1
0
Fork 0

fix: add trouble and formatter nvim plugins

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-02-08 00:31:48 -05:00
parent ded04456cb
commit 6db99389bc
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
4 changed files with 12 additions and 8 deletions

View file

@ -32,6 +32,7 @@ packer.startup(function()
use("simrat39/symbols-outline.nvim")
use("lcheylus/overlength.nvim")
use("akinsho/bufferline.nvim")
use("folke/trouble.nvim")
-- completion
use("hrsh7th/cmp-nvim-lsp")
@ -178,6 +179,9 @@ require('formatter').setup {
}
end
},
c = {
require('formatter.filetypes.c').clangformat
},
cpp = {
require('formatter.filetypes.cpp').clangformat
},
@ -213,3 +217,6 @@ require('Comment').setup {}
require("nvim-autopairs").setup {
disable_filetype = { "TelescopePrompt", "racket" }
}
-- trouple
require("trouble").setup {}