nix/home/config/nvim/module/plugin/Filetree.nix

42 lines
1,000 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
-- Disable netrw at the very start of your init.lua.
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
2024-04-06 03:03:58 +03:00
local function my_on_attach(bufnr)
local api = require "nvim-tree.api"
2024-04-06 03:03:58 +03:00
local function opts(desc)
return { desc = "nvim-tree: " .. desc, buffer = bufnr, noremap = true, silent = true, nowait = true }
end
2024-04-06 03:03:58 +03:00
-- Default mappings.
api.config.mappings.default_on_attach(bufnr)
2024-04-06 03:03:58 +03:00
-- Custom mappings.
-- vim.keymap.set('n', '<Leader><Tab>', api.tree.change_root_to_node, opts('Cd into'))
end
2024-04-06 03:03:58 +03:00
-- Set termguicolors to enable highlight groups.
vim.opt.termguicolors = true
2024-04-06 03:03:58 +03:00
-- Setup nvim-tree.
require("nvim-tree").setup({
on_attach = my_on_attach,
sort_by = "case_sensitive",
view = {
width = 30,
},
renderer = {
group_empty = true,
},
filters = {
dotfiles = false,
git_ignored = false
},
})
'';
2024-04-06 03:03:58 +03:00
}