summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins
diff options
context:
space:
mode:
authorJohannes Ranke <johannes.ranke@jrwb.de>2024-12-06 23:32:26 +0100
committerJohannes Ranke <johannes.ranke@jrwb.de>2024-12-06 23:32:26 +0100
commit7574a02db9487ca02b15d17d01066c5d5ea8f83c (patch)
tree936b7a4132c56940adca8881e8a01957fc409795 /nvim/lua/plugins
parent941e573e22d1c4b01e05b8cacc7a317bfb8eeaf8 (diff)
Add some more plugins to the lua config
The plugins still need to be configured
Diffstat (limited to 'nvim/lua/plugins')
-rw-r--r--nvim/lua/plugins/misc.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/nvim/lua/plugins/misc.lua b/nvim/lua/plugins/misc.lua
new file mode 100644
index 0000000..431bece
--- /dev/null
+++ b/nvim/lua/plugins/misc.lua
@@ -0,0 +1,30 @@
+return {
+ -- airline
+ { "vim-airline/vim-airline" },
+ { "vim-airline/vim-airline-themes" },
+
+ -- pandoc
+ { "vim-pandoc/vim-pandoc" },
+ { "vim-pandoc/vim-pandoc-syntax" },
+
+ -- kwbdi
+ --[[ The following plugin gives me <Leader>bd for closing a buffer while keeping
+ the window open, for example when editing several R scripts with
+ the R interpreter running in a separate vim window ]]
+ { "seb-mueller/kwbdi.vim" },
+
+ -- Version control
+ { "tpope/vim-fugitive" },
+ { "airblade/vim-gitgutter" },
+ { "samoshkin/vim-mergetool" },
+
+ -- Show an manage marks
+ { "kshenoy/vim-signature" },
+
+ -- Wayland clipboard
+ { "jasonccox/vim-wayland-clipboard" },
+
+ -- vimcmdline
+ { "jalvesaq/vimcmdline" },
+
+}

Contact - Imprint