summaryrefslogtreecommitdiffstats
path: root/nvim/lua/custom
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/custom')
-rw-r--r--nvim/lua/custom/plugins/fzf.lua8
-rw-r--r--nvim/lua/custom/plugins/rust.lua17
2 files changed, 25 insertions, 0 deletions
diff --git a/nvim/lua/custom/plugins/fzf.lua b/nvim/lua/custom/plugins/fzf.lua
new file mode 100644
index 0000000..ca100a2
--- /dev/null
+++ b/nvim/lua/custom/plugins/fzf.lua
@@ -0,0 +1,8 @@
+return {
+ {
+ 'junegunn/fzf.vim',
+ },
+ {
+ 'junegunn/fzf',
+ },
+}
diff --git a/nvim/lua/custom/plugins/rust.lua b/nvim/lua/custom/plugins/rust.lua
new file mode 100644
index 0000000..ea1d7c8
--- /dev/null
+++ b/nvim/lua/custom/plugins/rust.lua
@@ -0,0 +1,17 @@
+return {
+ {
+ 'doums/darcula',
+ config = function()
+ vim.filetype.add {
+ extension = {
+ rust = 'rust',
+ },
+ }
+ end,
+ },
+ {
+ 'mrcjkb/rustaceanvim',
+ version = '^6', -- Recommended
+ lazy = false, -- This plugin is already lazy
+ },
+}