-- River Rooks nvim config -- init.lua -- render options, keybinds, lazy and treesitter -- processed first -- -- render options require('options') -- render keybinds require('keybinds') -- bootstrao lazy.nvim require("config.lazy") -- lazy.nvim settings require("lazy").setup({ spec = { -- import your plugins { 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 '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 { '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 }, }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. -- install = { colorscheme = { "habamax" } }, -- 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