Adding in nvim to trackd

This commit is contained in:
talksik
2023-07-28 09:43:58 -07:00
parent fbdb849c67
commit 868a263cbd
21 changed files with 503 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
require("zen-mode").setup {
window = {
width = 100,
options = {
number = true,
relativenumber = true,
}
},
}
vim.keymap.set("n", "<leader>zz", function()
require("zen-mode").toggle()
end)