mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 13:20:44 +00:00
cleanup: remove references to nvim-compe
This commit is contained in:
parent
29f78f7827
commit
2d9c1b34c6
4 changed files with 0 additions and 27 deletions
17
flake.lock
17
flake.lock
|
@ -1092,22 +1092,6 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nvim-compe": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1633188506,
|
|
||||||
"narHash": "sha256-Y2oqvsuAKM3qjmmtJVD9z34682eCRF25kPL+rxhhg7I=",
|
|
||||||
"owner": "hrsh7th",
|
|
||||||
"repo": "nvim-compe",
|
|
||||||
"rev": "d186d739c54823e0b010feb205c6f97792322c08",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "hrsh7th",
|
|
||||||
"repo": "nvim-compe",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nvim-cursorline": {
|
"nvim-cursorline": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -1574,7 +1558,6 @@
|
||||||
"nvim-cmp": "nvim-cmp",
|
"nvim-cmp": "nvim-cmp",
|
||||||
"nvim-code-action-menu": "nvim-code-action-menu",
|
"nvim-code-action-menu": "nvim-code-action-menu",
|
||||||
"nvim-colorizer-lua": "nvim-colorizer-lua",
|
"nvim-colorizer-lua": "nvim-colorizer-lua",
|
||||||
"nvim-compe": "nvim-compe",
|
|
||||||
"nvim-cursorline": "nvim-cursorline",
|
"nvim-cursorline": "nvim-cursorline",
|
||||||
"nvim-dap": "nvim-dap",
|
"nvim-dap": "nvim-dap",
|
||||||
"nvim-dap-ui": "nvim-dap-ui",
|
"nvim-dap-ui": "nvim-dap-ui",
|
||||||
|
|
|
@ -228,12 +228,6 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Autocompletes
|
|
||||||
nvim-compe = {
|
|
||||||
url = "github:hrsh7th/nvim-compe";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
nvim-cmp = {
|
nvim-cmp = {
|
||||||
url = "github:hrsh7th/nvim-cmp";
|
url = "github:hrsh7th/nvim-cmp";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
|
|
@ -15,7 +15,6 @@ with lib; let
|
||||||
"nvim-tree-lua"
|
"nvim-tree-lua"
|
||||||
"nvim-bufferline-lua"
|
"nvim-bufferline-lua"
|
||||||
"lualine"
|
"lualine"
|
||||||
"nvim-compe"
|
|
||||||
"nvim-autopairs"
|
"nvim-autopairs"
|
||||||
"nvim-ts-autotag"
|
"nvim-ts-autotag"
|
||||||
"nvim-web-devicons"
|
"nvim-web-devicons"
|
||||||
|
|
|
@ -15,9 +15,6 @@ in {
|
||||||
|
|
||||||
vim.luaConfigRC.autopairs = entryAnywhere ''
|
vim.luaConfigRC.autopairs = entryAnywhere ''
|
||||||
require("nvim-autopairs").setup{}
|
require("nvim-autopairs").setup{}
|
||||||
${optionalString (config.vim.autocomplete.type == "nvim-compe") ''
|
|
||||||
require('nvim-autopairs.completion.compe').setup(${toLuaObject cfg.setupOpts})
|
|
||||||
''}
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue