diff options
| author | Josh Ott <josh@ottmail.me> | 2025-08-22 23:17:50 -0400 |
|---|---|---|
| committer | Josh Ott <josh@ottmail.me> | 2025-08-22 23:17:50 -0400 |
| commit | e254908bdb8c13b61203b16d4c60b05d33fbe31f (patch) | |
| tree | 6f1114c94b2d5f8139d468151df78eed2da22f72 /.config | |
| parent | 15f7aa8750a6311d669234831484957edb4e982e (diff) | |
| download | dotfiles-e254908bdb8c13b61203b16d4c60b05d33fbe31f.tar.gz dotfiles-e254908bdb8c13b61203b16d4c60b05d33fbe31f.zip | |
outline keymaps
Diffstat (limited to '.config')
| -rw-r--r-- | .config/nvim/lua/plugins.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 8ddca61..93148da 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -92,6 +92,13 @@ require("lazy").setup({ }, { 'hedyhli/outline.nvim', - config = function() require("outline").setup() end, + config = function() + require("outline").setup({ + keymaps = { + fold = '<Left>', + unfold = '<Right>', + } + }) + end, }, }) |