summaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl')
-rw-r--r--fnl/config/init.fnl1
-rw-r--r--fnl/config/neogit.fnl4
-rw-r--r--fnl/plugins.fnl3
3 files changed, 7 insertions, 1 deletions
diff --git a/fnl/config/init.fnl b/fnl/config/init.fnl
index c99f5f1..1585b3e 100644
--- a/fnl/config/init.fnl
+++ b/fnl/config/init.fnl
@@ -12,6 +12,7 @@
config.hop
config.lualine
config.nvim-tree
+ config.neogit
config.orgmode
config.project
config.spectre
diff --git a/fnl/config/neogit.fnl b/fnl/config/neogit.fnl
new file mode 100644
index 0000000..1fb2d76
--- /dev/null
+++ b/fnl/config/neogit.fnl
@@ -0,0 +1,4 @@
+(module config.neogit {autoload {util util}})
+
+(let [neogit (util.load-plugin :trim)]
+ (neogit.setup {}))
diff --git a/fnl/plugins.fnl b/fnl/plugins.fnl
index 455611d..d76a39c 100644
--- a/fnl/plugins.fnl
+++ b/fnl/plugins.fnl
@@ -45,7 +45,7 @@
:numToStr/Comment.nvim {}
:lewis6991/gitsigns.nvim {}
:kyazdani42/nvim-web-devicons {}
- :kyazdani42/nvim-tree.lua {:requires {1 :kyazdani42/nvim-web-devicons}}
+ :kyazdani42/nvim-tree.lua {:requires [:kyazdani42/nvim-web-devicons]}
:moll/vim-bbye {}
:nvim-lualine/lualine.nvim {:requires {1 :kyazdani42/nvim-web-devicons
:opt true}}
@@ -65,4 +65,5 @@
:dstein64/vim-startuptime {}
:lewis6991/spellsitter.nvim {}
:tamago324/lir.nvim {}
+ :TimUntersberger/neogit {:requires :nvim-lua/plenary.nvim}
:s1n7ax/nvim-window-picker {}})