diff --git a/nvim.init.lazy.lua b/nvim.init.lazy.lua index d330e80..1e449b5 100644 --- a/nvim.init.lazy.lua +++ b/nvim.init.lazy.lua @@ -16,9 +16,12 @@ vim.opt.rtp:prepend(lazypath) require("lazy").setup({ -- Config defaults = { - lazy = true + lazy = true, + }, + rocks = { + -- Currently no plugin requires luarocks + enabled = false, }, - -- Packages "asolkar/vim-color-molokini", "navarasu/onedark.nvim", @@ -95,7 +98,7 @@ require("copilot").setup({ -- Treesitter require'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" (the listed parsers MUST always be installed) - ensure_installed = { "comment", "perl", "ruby", "verilog", "verilog", "rust" }, + ensure_installed = { "comment", "perl", "ruby", "verilog", "rust" }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, @@ -220,6 +223,10 @@ if vim.g.neovide then vim.g.neovide_scale_factor = 1.0 end +-- -- Dependencies +-- -- * Currently no plugin requires luarocks +-- opts.rocks.hererocks = false + -- Set highlight on search vim.o.hlsearch = true