diff options
Diffstat (limited to 'fnl/plugins/editor/neogit.fnl')
-rw-r--r-- | fnl/plugins/editor/neogit.fnl | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/fnl/plugins/editor/neogit.fnl b/fnl/plugins/editor/neogit.fnl deleted file mode 100644 index a84c9dd..0000000 --- a/fnl/plugins/editor/neogit.fnl +++ /dev/null @@ -1,20 +0,0 @@ -;; Git ui. - -(local dependencies [:nvim-lua/plenary.nvim]) - -(local keys [{1 :<leader>gm 2 :<cmd>Neogit<cr> :desc :Neogit}]) - -(local auto-cmds [[:FileType - {:pattern [:NeogitStatus - :NeogitCommitMessage - :NeogitNotification - :NeogitCommitView] - :command "setlocal spell!"}]]) - -(fn init [] - (let [cmds (require :util.cmds)] - (cmds.create-auto-cmds auto-cmds))) - -(local opts {:integrations {:diffview true :telescope true}}) - -{1 :TimUntersberger/neogit :cmd :Neogit : opts : init : dependencies : keys} |