summaryrefslogtreecommitdiffstats
path: root/modules/editor/neovim/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/editor/neovim/init.lua')
-rw-r--r--modules/editor/neovim/init.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/editor/neovim/init.lua b/modules/editor/neovim/init.lua
deleted file mode 100644
index 4a80830..0000000
--- a/modules/editor/neovim/init.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
-if not vim.loop.fs_stat(lazypath) then
- vim.fn.system({
- "git",
- "clone",
- "--filter=blob:none",
- "https://github.com/folke/lazy.nvim.git",
- "--branch=stable",
- lazypath
- })
-end
-vim.opt.rtp:prepend(lazypath)
-
-require("lazy").setup("plugins")