summaryrefslogtreecommitdiff
path: root/fnl/plugins/editor/neogit.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 01:50:20 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 01:50:20 +0100
commit2a94573f54c69a9af7536586ab2c03eb88bda5e7 (patch)
tree48e430773d56baef8c751fb8a6b4d76303b61636 /fnl/plugins/editor/neogit.fnl
parent16198ca3bcd0ddd61f8d18280769c6f226b2b7ce (diff)
Refactor
Diffstat (limited to 'fnl/plugins/editor/neogit.fnl')
-rw-r--r--fnl/plugins/editor/neogit.fnl20
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}