nvim plugins
This commit is contained in:
parent
27c0e8f7fc
commit
cdbe7f6b73
@ -129,3 +129,15 @@ end
|
|||||||
require('telescope').load_extension('fzf')
|
require('telescope').load_extension('fzf')
|
||||||
|
|
||||||
require("nvim-autopairs").setup {}
|
require("nvim-autopairs").setup {}
|
||||||
|
|
||||||
|
require('gitsigns').setup()
|
||||||
|
|
||||||
|
local null_ls = require("null-ls")
|
||||||
|
|
||||||
|
null_ls.setup({
|
||||||
|
sources = {
|
||||||
|
null_ls.builtins.formatting.stylua,
|
||||||
|
null_ls.builtins.diagnostics.eslint,
|
||||||
|
null_ls.builtins.completion.spell,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|||||||
@ -204,6 +204,9 @@ call vundle#begin()
|
|||||||
|
|
||||||
Plugin 'preservim/nerdtree'
|
Plugin 'preservim/nerdtree'
|
||||||
|
|
||||||
|
Plugin 'lewis6991/gitsigns.nvim'
|
||||||
|
Plugin 'jose-elias-alvarez/null-ls.nvim'
|
||||||
|
|
||||||
call vundle#end()
|
call vundle#end()
|
||||||
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user