diff options
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index de3025e..fcd06ee 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -42,7 +42,7 @@ local PKGS = { { url = "https://github.com/editorconfig/editorconfig-vim.git" }; { url = "https://github.com/nathom/filetype.nvim.git" }; { url = "https://github.com/wfxr/minimap.vim.git" }; - { url = "https://github.com/edluffy/hologram.nvim.git" }; + { url = "https://github.com/preservim/nerdcommenter.git" }; -- LSP { url = "https://github.com/neovim/nvim-lspconfig.git" }; @@ -182,8 +182,6 @@ local function init_plugins() -- refer to the configuration section below }) - require('hologram').setup({}) - require("nvim-treesitter.configs").setup({ ensure_installed = { "javascript"; "typescript"; "lua"; "c_sharp"; "jsonc" }; sync_install = false; |