diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-26 12:01:16 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-26 12:01:16 +0200 |
commit | 88d2e86be120046bc45f3e783fd117192cd7dad5 (patch) | |
tree | d9d799d69b63b81bde882b26f88434ef1fa5ca91 /.config/nvim/lua | |
parent | f93bad12f1b4feeeee007ceab4a350eb1aa26c1e (diff) |
Bug fix, add nvim-compe to plugins
Diffstat (limited to '.config/nvim/lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 4effcb1..6eb71be 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -13,7 +13,6 @@ return { end, }, - { "nvim-lua/popup.nvim" }, { "nvim-lua/plenary.nvim" }, @@ -25,7 +24,15 @@ return { end, disable = not options.builtin.telescope.active, }, - + -- Completion & Snippets + { + "hrsh7th/nvim-compe", + event = "InsertEnter", + config = function() + require("core.compe").setup() + end, + disable = not options.builtin.compe.active, + }, { "hrsh7th/vim-vsnip", -- wants = "friendly-snippets", @@ -169,4 +176,4 @@ return { end, disable = not options.builtin.terminal.active, }, - } +} |