Compare commits

...

2 Commits

1 changed files with 5 additions and 0 deletions

View File

@ -165,6 +165,11 @@ in
vim.o.list = true -- Show hidden characters.
vim.o.shiftwidth = 2 -- # of spaces to use for each (auto)indent.
vim.o.tabstop = 2 -- # of spaces a <Tab> in the file counts for.
-- "Zoom" in on a window
vim.keymap.set("n", "<c-w>z", ":tabedit %<CR>")
-- Open working directory.
vim.keymap.set("n", "-", ":Explore<CR>")
'')
];
};