Additional code completion
This commit is contained in:
parent
a3deea9236
commit
ffa077a90a
|
@ -53,6 +53,9 @@ cmp.setup({
|
|||
{ name = "buffer", keyword_length = 2 },
|
||||
{ name = "calc" },
|
||||
{ name = "lua-latex-symbols", option = { cache = true } },
|
||||
{ name = "doxygen" },
|
||||
{ name = "cmp_tabnine" },
|
||||
{ name = "spell", option = { keep_all_entries = false }, keyword_length = 3 },
|
||||
}),
|
||||
|
||||
-- add formatting of the different sources
|
||||
|
|
|
@ -67,4 +67,13 @@ return require("packer").startup(function(use)
|
|||
requires = { "nvim-tree/nvim-web-devicons" },
|
||||
})
|
||||
use("hiroakis/cyberspace.vim") -- I'm feeling cyber
|
||||
use({
|
||||
"paopaol/cmp-doxygen",
|
||||
requires = {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
"nvim-treesitter/nvim-treesitter-textobjects",
|
||||
},
|
||||
})
|
||||
use({ "tzachar/cmp-tabnine", run = "./install.sh", requires = "hrsh7th/nvim-cmp" })
|
||||
use("f3fora/cmp-spell")
|
||||
end)
|
||||
|
|
|
@ -87,3 +87,17 @@ AUTOSAR
|
|||
toolchain
|
||||
FPGAs
|
||||
efabless
|
||||
ICs
|
||||
unmatching
|
||||
photonic
|
||||
cryptoalgorithms
|
||||
depackage
|
||||
PIPs
|
||||
detectability
|
||||
runtime
|
||||
IDDT
|
||||
SoC
|
||||
asic
|
||||
GDS
|
||||
RTL
|
||||
IPs
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue