add gitgutter, lualine, autopairs and surround
This commit is contained in:
5
lua/crentist/lazy/autopairs.lua
Normal file
5
lua/crentist/lazy/autopairs.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
'windwp/nvim-autopairs',
|
||||
event = "InsertEnter",
|
||||
config = true
|
||||
}
|
||||
3
lua/crentist/lazy/gitgutter.lua
Normal file
3
lua/crentist/lazy/gitgutter.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
"airblade/vim-gitgutter",
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
return {
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons', branch = 'master' },
|
||||
config = function()
|
||||
local colors = {
|
||||
black = '#282828',
|
||||
|
||||
10
lua/crentist/lazy/surround.lua
Normal file
10
lua/crentist/lazy/surround.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
return {
|
||||
"kylechui/nvim-surround",
|
||||
version = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("nvim-surround").setup({
|
||||
-- Configuration here, or leave empty to use defaults
|
||||
})
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user