diff options
| -rw-r--r-- | .config/nvim/after/ftplugin/gitcommit.lua | 3 | ||||
| -rw-r--r-- | .config/nvim/init.lua | 14 |
2 files changed, 14 insertions, 3 deletions
diff --git a/.config/nvim/after/ftplugin/gitcommit.lua b/.config/nvim/after/ftplugin/gitcommit.lua deleted file mode 100644 index 774138a..0000000 --- a/.config/nvim/after/ftplugin/gitcommit.lua +++ /dev/null @@ -1,3 +0,0 @@ -vimrc.after_ftplugin('gitcommit', function(conf) - vim.wo.spell = true -end) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 2b9ab6b..628f771 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -1329,6 +1329,20 @@ end) +-- committia {{{2 + +do + local committia_hooks = {} + + function committia_hooks.edit_open(_info) + vim.wo.spell = true + end + + G.committia_hooks = committia_hooks +end + + + -- dirvish {{{2 -- Prevent dirvish from mapping hyphen key to "<Plug>(dirvish_up)". |
