fix: package
This commit is contained in:
parent
2b17334f38
commit
d7b1584fdd
2 changed files with 4 additions and 4 deletions
|
@ -13,8 +13,8 @@ cmp.setup({
|
||||||
},
|
},
|
||||||
mapping = {
|
mapping = {
|
||||||
-- Add tab support
|
-- Add tab support
|
||||||
["<S-Tab>"] = cmp.mapping.select_prev_item(),
|
["<Up>"] = cmp.mapping.select_prev_item(),
|
||||||
["<Tab>"] = cmp.mapping.select_next_item(),
|
["<Down>"] = cmp.mapping.select_next_item(),
|
||||||
["<C-S-f>"] = cmp.mapping.scroll_docs(-4),
|
["<C-S-f>"] = cmp.mapping.scroll_docs(-4),
|
||||||
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
||||||
["<C-Space>"] = cmp.mapping.complete(),
|
["<C-Space>"] = cmp.mapping.complete(),
|
||||||
|
|
|
@ -43,7 +43,7 @@ pkgs.writeTextFile {
|
||||||
executable = true;
|
executable = true;
|
||||||
destination = "/bin/nvim";
|
destination = "/bin/nvim";
|
||||||
text = ''
|
text = ''
|
||||||
#!${pkgs.bash}
|
#!${pkgs.bash}/bin/bash
|
||||||
export PATH=${lib.makeBinPath deps}:$PATH
|
export PATH=${lib.makeBinPath deps}:$PATH
|
||||||
export LUA_PATH=${../.}/lua/?.lua
|
export LUA_PATH=${../.}/lua/?.lua
|
||||||
${pkgs.neovim}/bin/nvim -u ${../.}/init.lua $@
|
${pkgs.neovim}/bin/nvim -u ${../.}/init.lua $@
|
||||||
|
|
Loading…
Add table
Reference in a new issue