Skip to content

Commit 4cfec83

Browse files
nvim(cmp): add nvim_lua
1 parent 9610c7d commit 4cfec83

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

modules/nvim/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ let
101101
markdown-preview-nvim
102102
cmp-calc
103103
cmp-go-pkgs
104+
cmp-nvim-lua
104105
];
105106
in
106107
{

modules/nvim/lua/minizilla/misc.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ nmap('<Leader>fb', '<Cmd>Oil<CR>')
3737
require('cmp').setup {
3838
sources = {
3939
{ name = 'calc' },
40-
{ name = 'go_pkgs' }
40+
{ name = 'go_pkgs' },
41+
{ name = 'nvim_lua' }
4142
}
4243
}

0 commit comments

Comments
 (0)