diff options
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/lua/custom/init.lua | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/.config/nvim/lua/custom/init.lua b/.config/nvim/lua/custom/init.lua index 6d1f5fb..2f15913 100644 --- a/.config/nvim/lua/custom/init.lua +++ b/.config/nvim/lua/custom/init.lua @@ -48,7 +48,12 @@ customPlugins.add("install_plugins", function(use) local opts = {} if server.name == "denols" then - opts.root_dir = vim.loop.cwd + opts.root_dir = vim.loop.cwd + opts.init_options = { + enable = true, + lint = true, + unstable = true, + } end server:setup(opts) @@ -62,18 +67,25 @@ customPlugins.add("install_plugins", function(use) --[[ - use { - "karb94/neoscroll.nvim", - opt = true, - config = function() - require("neoscroll").setup() - end, + -- use { "umaumax/vim-lcov" } - -- lazy loading - setup = function() - require("core.utils").packer_lazy_load "neoscroll.nvim" - end, - } + use { "google/vim-maktaba" } + use { "google/vim-coverage" } + + use { "nathom/filetype.nvim" } + + use { + "karb94/neoscroll.nvim", + opt = true, + config = function() + require("neoscroll").setup() + end, + + -- lazy loading + setup = function() + require("core.utils").packer_lazy_load "neoscroll.nvim" + end, + } use { "prettier/vim-prettier", |