nvim
This commit is contained in:
parent
605d35fe2d
commit
07c9822c5a
1 changed files with 14 additions and 18 deletions
|
@ -23,7 +23,7 @@ plugins = {
|
||||||
{
|
{
|
||||||
'windwp/nvim-ts-autotag',
|
'windwp/nvim-ts-autotag',
|
||||||
config = function ()
|
config = function ()
|
||||||
require('nvim-ts-autotag').setup()
|
require('nvim-ts-autotag').setup()
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -111,6 +111,15 @@ plugins = {
|
||||||
config = function() require('galaxyline.themes.eviline') end,
|
config = function() require('galaxyline.themes.eviline') end,
|
||||||
dependencies = {{'nvim-tree/nvim-web-devicons'}},
|
dependencies = {{'nvim-tree/nvim-web-devicons'}},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'nvim-neo-tree/neo-tree.nvim',
|
||||||
|
branch = "v3.x",
|
||||||
|
dependencies = {
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
'nvim-tree/nvim-web-devicons',
|
||||||
|
'MunifTanjim/nui.nvim'
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
|
@ -124,22 +133,6 @@ plugins = {
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
|
||||||
config = function()
|
|
||||||
configs = require('ibl').setup({
|
|
||||||
indent = {
|
|
||||||
char = "│"
|
|
||||||
},
|
|
||||||
scope = {
|
|
||||||
show_start = false,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end
|
|
||||||
},
|
|
||||||
{
|
|
||||||
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
require("lazy").setup(plugins)
|
require("lazy").setup(plugins)
|
||||||
|
@ -151,4 +144,7 @@ end
|
||||||
vim.opt.smarttab = true
|
vim.opt.smarttab = true
|
||||||
vim.opt.expandtab = true
|
vim.opt.expandtab = true
|
||||||
vim.opt.shiftwidth = 2
|
vim.opt.shiftwidth = 2
|
||||||
|
vim.opt.cmdheight = 0
|
||||||
vim.opt.guifont = "victor mono:h11"
|
vim.opt.guifont = "victor mono:h11"
|
||||||
|
vim.opt.termguicolors = true
|
||||||
|
vim.wo.number = true
|
||||||
|
|
Loading…
Reference in a new issue