added discord + formatting + rest api + more
This commit is contained in:
parent
fd1eb6128a
commit
f82cc2bc93
15 changed files with 189 additions and 70 deletions
|
|
@ -5,10 +5,12 @@ return {
|
|||
"hrsh7th/nvim-cmp",
|
||||
dependencies = {
|
||||
"hrsh7th/cmp-nvim-lsp",
|
||||
{ "L3MON4D3/LuaSnip",
|
||||
{
|
||||
"L3MON4D3/LuaSnip",
|
||||
build = "make install_jsregexp"
|
||||
},
|
||||
"saadparwaiz1/cmp_luasnip",
|
||||
"saadparwaiz1/cmp_luasnip", -- luasnip autocompletion
|
||||
"hrsh7th/cmp-path" -- Path finder
|
||||
},
|
||||
config = function()
|
||||
local cmp = require("cmp")
|
||||
|
|
@ -28,7 +30,8 @@ return {
|
|||
}),
|
||||
sources = cmp.config.sources({
|
||||
{ name = 'nvim_lsp' },
|
||||
{ name = 'luasnip' }
|
||||
{ name = 'luasnip' },
|
||||
{ name= 'path' }
|
||||
}),
|
||||
formatting = {
|
||||
format = require("nvim-highlight-colors").format
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue