vim: nvim-tree
This commit is contained in:
parent
cbcfd39229
commit
410ee7c345
1 changed files with 19 additions and 0 deletions
|
@ -842,6 +842,25 @@
|
|||
require("lualine").setup({})
|
||||
'';
|
||||
}
|
||||
|
||||
# A File Explorer For Neovim Written In Lua.
|
||||
# https://github.com/nvim-tree/nvim-tree.lua
|
||||
{
|
||||
plugin = nvim-tree-lua;
|
||||
type = "lua";
|
||||
config =
|
||||
# lua
|
||||
''
|
||||
require("nvim-tree").setup({
|
||||
filters = {
|
||||
custom = {
|
||||
"^\\.git",
|
||||
},
|
||||
},
|
||||
})
|
||||
vim.keymap.set("n", "<Leader>e", vim.cmd.NvimTreeToggle)
|
||||
'';
|
||||
}
|
||||
];
|
||||
extraPackages = [
|
||||
nixpkgs-unstable.legacyPackages.${pkgs.system}.basedpyright
|
||||
|
|
Loading…
Reference in a new issue