cleanup: remove references to nvim-compe

This commit is contained in:
Ching Pei Yang 2024-03-22 15:06:45 +00:00
parent 29f78f7827
commit 2d9c1b34c6
4 changed files with 0 additions and 27 deletions

View file

@ -1092,22 +1092,6 @@
"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": {
"flake": false,
"locked": {
@ -1574,7 +1558,6 @@
"nvim-cmp": "nvim-cmp",
"nvim-code-action-menu": "nvim-code-action-menu",
"nvim-colorizer-lua": "nvim-colorizer-lua",
"nvim-compe": "nvim-compe",
"nvim-cursorline": "nvim-cursorline",
"nvim-dap": "nvim-dap",
"nvim-dap-ui": "nvim-dap-ui",

View file

@ -228,12 +228,6 @@
flake = false;
};
# Autocompletes
nvim-compe = {
url = "github:hrsh7th/nvim-compe";
flake = false;
};
nvim-cmp = {
url = "github:hrsh7th/nvim-cmp";
flake = false;

View file

@ -15,7 +15,6 @@ with lib; let
"nvim-tree-lua"
"nvim-bufferline-lua"
"lualine"
"nvim-compe"
"nvim-autopairs"
"nvim-ts-autotag"
"nvim-web-devicons"

View file

@ -15,9 +15,6 @@ in {
vim.luaConfigRC.autopairs = entryAnywhere ''
require("nvim-autopairs").setup{}
${optionalString (config.vim.autocomplete.type == "nvim-compe") ''
require('nvim-autopairs.completion.compe').setup(${toLuaObject cfg.setupOpts})
''}
'';
};
}