diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-08-17 23:55:30 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-08-17 23:55:30 +0200 |
commit | 76d0891ad52ef006eda38852a1a1beffb4ca4d97 (patch) | |
tree | b3bb1e79175ed3c4757d55bff3845a12b89f3229 /.config/nvim | |
parent | a43c8b2d1e426893e9a61a3e71315e8caeeb6ee2 (diff) |
nvim: Remove help config
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/after/ftplugin/help.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.config/nvim/after/ftplugin/help.lua b/.config/nvim/after/ftplugin/help.lua deleted file mode 100644 index 0b15270..0000000 --- a/.config/nvim/after/ftplugin/help.lua +++ /dev/null @@ -1,8 +0,0 @@ -vim.api.nvim_create_autocmd('BufWinEnter', { - desc = 'Open (neo)vim help pages in a vertical split', - group = vim.api.nvim_create_augroup('mango-vert-help', { clear = true }), - buffer = 0, - callback = function() - vim.cmd.wincmd 'L' - end, -}) |