diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2024-02-14 15:45:48 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2024-02-14 15:45:48 +0400 |
| commit | d53d48975c0ed4aec92bc5bc0fcbe5c6662c8a69 (patch) | |
| tree | 9cf22e045b2e82b20e002dd87f999928249be09c /lua/keybindings.lua | |
| parent | b5e8751e3a35d560e60a6839a0c80d73d648cb2f (diff) | |
add new plugins
- neorg plugin with couple of modules and default directory
- plugin for typst support
- vim-fugitive
- true zen with added keybinding
Diffstat (limited to 'lua/keybindings.lua')
| -rw-r--r-- | lua/keybindings.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/keybindings.lua b/lua/keybindings.lua index e10e458..2c72e54 100644 --- a/lua/keybindings.lua +++ b/lua/keybindings.lua @@ -42,3 +42,10 @@ function trim_whitespace() vim.fn.winrestview(view) end vim.keymap.set("n", "<leader>f", trim_whitespace) + + +-- PLUGINS -- + +-- True Zen +vim.keymap.set("n", "tz", ":TZAtaraxis<CR>") + |