diff options
Diffstat (limited to 'fnl/plugins/neogit.fnl')
| -rw-r--r-- | fnl/plugins/neogit.fnl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/fnl/plugins/neogit.fnl b/fnl/plugins/neogit.fnl index 143699d..b8ee757 100644 --- a/fnl/plugins/neogit.fnl +++ b/fnl/plugins/neogit.fnl @@ -7,13 +7,12 @@ (local keys [{1 :<leader>gm 2 :<cmd>Neogit<cr> :desc :Neogit}]) (λ init [] - (autocmds - [:FileType - {:pattern [:NeogitStatus - :NeogitCommitMessage - :NeogitNotification - :NeogitCommitView] - :command "setlocal spell!"}])) + (autocmds [:FileType + {:pattern [:NeogitStatus + :NeogitCommitMessage + :NeogitNotification + :NeogitCommitView] + :command "setlocal spell!"}])) (local opts {:integrations {:diffview true :telescope true}}) |