diff options
author | Luca Matei Pintilie <lucafulger@gmail.com> | 2023-02-18 16:48:16 +0000 |
---|---|---|
committer | Luca Matei Pintilie <lucafulger@gmail.com> | 2023-02-18 16:56:43 +0000 |
commit | 74808e9032d6044e067b01ce764677c795dcf26d (patch) | |
tree | 8f0648ce930946bf85aa7ae3e42ce7f37d5bd7f3 /.config/nvim/lua/plugins.lua | |
parent | 938e3fc26f7cddf3c2173f326be2a6b8bf1326f3 (diff) | |
download | dotfiles-74808e9032d6044e067b01ce764677c795dcf26d.tar dotfiles-74808e9032d6044e067b01ce764677c795dcf26d.tar.gz dotfiles-74808e9032d6044e067b01ce764677c795dcf26d.tar.bz2 dotfiles-74808e9032d6044e067b01ce764677c795dcf26d.tar.lz dotfiles-74808e9032d6044e067b01ce764677c795dcf26d.tar.xz dotfiles-74808e9032d6044e067b01ce764677c795dcf26d.tar.zst dotfiles-74808e9032d6044e067b01ce764677c795dcf26d.zip |
Add more LSP plugins
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; |