diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-10-07 18:05:28 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-10-07 18:05:28 +0200 |
commit | d131d8ea1bb662a8b776f6851be28a1f70d822a6 (patch) | |
tree | ce30d5b107fc5eacc82ab01e833f66b2c696d3f0 /.config/nvim/lua/plugins.lua | |
parent | ab09544b2bb14fc9555c31b0c603eb726d5a503f (diff) |
nvim: cleanup plugins.lua
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 2259b05..16b8fae 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -43,14 +43,6 @@ return require('packer').startup(function(use) end, } - -- use { - -- "akinsho/bufferline.nvim", - -- after = "nvim-web-devicons", - -- config = function() - -- require "setup.bufferline" - -- end, - -- }, - use { "kyazdani42/nvim-tree.lua", cmd = { "NvimTreeToggle", "NvimTreeFindFile" }, @@ -85,8 +77,6 @@ return require('packer').startup(function(use) end, } - -- lsp stuff - use { "neovim/nvim-lspconfig", event = { "BufRead", "BufNewFile" }, @@ -108,8 +98,6 @@ return require('packer').startup(function(use) end } - -- load luasnips + cmp related when lsp attaches - use { "L3MON4D3/LuaSnip", wants = "friendly-snippets", |