-- River Rooks nvim config -- init.lua -- render options, keybinds, lazy and treesitter -- processed first -- -- render options require('options') -- render keybinds require('keybinds') -- bootstrap lazy.nvim require("config.lazy") -- lazy.nvim settings require("lazy").setup({ spec = { { import = "plugins" }, { 'tpope/vim-commentary', -- commenting lines with shortcut -- 'vimpostor/vim-tpipeline', -- integrate with tmux status-line 'kshenoy/vim-signature', -- tag lines 'mg979/vim-visual-multi', -- work on multiple lines at once 'obsidian-nvim/obsidian.nvim', -- Obsidian lsp plugin '0xm4n/resize.nvim', -- adds commands to resize panes 'nvim-tree/nvim-web-devicons', -- nerdfont! 'TamaMcGlinn/vim-termhere', --simple terminal QOL 'smjonas/inc-rename.nvim', --lsp plugin for renaming variable 'basola21/PDFview', -- rendering pdfs in nvim { 'nvim-telescope/telescope.nvim', tag = 'v0.2.0', dependencies = { 'nvim-lua/plenary.nvim', 'BurntSushi/ripgrep', 'sharkdp/fd' } }, -- fuzyfinding over lists { 'norcalli/nvim-colorizer.lua', config = function() require('colorizer').setup{"*"} end,}, -- preview colors { 'NMAC427/guess-indent.nvim', config = function() require('guess-indent').setup {} end,}, -- Detect tabstop and shiftwidth automatically { 'edluffy/hologram.nvim', auto_display = true,}, --image viewer { "denialofsandwich/sudo.nvim", dependencies = { "MunifTanjim/nui.nvim", },config = true, }, --write restricted files without restart { 'akinsho/toggleterm.nvim', version = "*", config = true}, -- terminal toggling and commands { 'nvim-java/nvim-java', config = function() require('java').setup() vim.lsp.enable('jdtls') end, }, --jave QOL { 'RRethy/base16-nvim', config = function() require('matugen').setup() end,}, --colorshceme for noctalia integration { "lervag/vimtex", lazy = false, init = function() vim.g.vimtex_view_method = "zathura" end } -- for latex editing }, }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. install = { colorscheme = { "miniautumn" } }, -- automatically check for plugin updates checker = { enabled = true }, }) -- sync nvim colorscheme with noctalia local theme_ok, matugen = pcall(require, "matugen") if theme_ok then matugen.setup() end -- setup lsp require("config.lsp")