update
This commit is contained in:
parent
f13050bbff
commit
676663312a
3
init.lua
3
init.lua
@ -12,7 +12,6 @@ else
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"http://git.qqnewbie.top/newbieQQ/lazy.nvim.git",
|
||||
-- latest stable release
|
||||
"--branch=stable",
|
||||
lazypath,
|
||||
})
|
||||
@ -30,7 +29,7 @@ else
|
||||
|
||||
require("lazy").setup({
|
||||
require('normal.plug'),
|
||||
require('neovim.plug')
|
||||
require('neovim.plug'),
|
||||
})
|
||||
|
||||
require('normal.normal')
|
||||
|
@ -1,32 +1,22 @@
|
||||
return {
|
||||
'kyazdani42/nvim-web-devicons',
|
||||
{
|
||||
'kyazdani42/nvim-tree.lua',
|
||||
config = function ()
|
||||
require'nvim-tree'.setup {
|
||||
sort_by = "case_sensitive",
|
||||
view = {
|
||||
width = 30,
|
||||
},
|
||||
-- renderer = {
|
||||
-- group_empty = true,
|
||||
-- },
|
||||
filters = {
|
||||
dotfiles = true,
|
||||
},
|
||||
-- -- 关闭文件时自动关闭
|
||||
-- auto_close = true,
|
||||
-- -- 不显示 git 状态图标
|
||||
-- git = {
|
||||
-- enable = true
|
||||
-- }
|
||||
}
|
||||
'kyazdani42/nvim-web-devicons',
|
||||
{
|
||||
'kyazdani42/nvim-tree.lua',
|
||||
config = function ()
|
||||
G.map({
|
||||
{"n", "<c-e>", ":NvimTreeToggle<CR>",{noremap = true}},
|
||||
{"n", "<c-e>", ":NvimTreeToggle<CR>", {noremap = true}},
|
||||
})
|
||||
end
|
||||
require'nvim-tree'.setup {
|
||||
sort_by = "case_sensitive",
|
||||
view = { width = 30, },
|
||||
filters = { dotfiles = true, },
|
||||
git = { enable = true },
|
||||
-- on_attach = my_on_attach,
|
||||
}
|
||||
|
||||
}
|
||||
end
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user