adding notes

This commit is contained in:
Carlos
2025-05-04 23:17:54 -04:00
parent 47edf65083
commit 4cf1cf7554
12 changed files with 399 additions and 183 deletions

View File

@@ -8,6 +8,14 @@ return {
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- 🧼 Remove invalid autocommand (FileExplorer) if it exists
vim.api.nvim_create_autocmd("VimEnter", {
once = true,
callback = function()
pcall(vim.cmd, "autocmd! FileExplorer *")
end,
})
nvimtree.setup({
view = {
width = 35,