summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua44
1 files changed, 22 insertions, 22 deletions
diff --git a/init.lua b/init.lua
index 0837577..b4da530 100644
--- a/init.lua
+++ b/init.lua
@@ -3,32 +3,32 @@ require("core")
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", -- latest stable release
- lazypath,
- })
+ vim.fn.system({
+ "git",
+ "clone",
+ "--filter=blob:none",
+ "https://github.com/folke/lazy.nvim.git",
+ "--branch=stable", -- latest stable release
+ lazypath,
+ })
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
- spec = {
- { import = "plugins.core" },
- { import = "plugins.eyecandy" },
- { import = "plugins.lsp" },
- { import = "plugins.lang" },
- { import = "plugins.extra.copilot" },
- { import = "plugins.extra.vim-easy-align" },
- { import = "plugins.extra.vim-fugitive" },
- --{ import = "plugins.extra.feline" },
- },
- change_detection = {
- enabled = true,
- notify = false,
- },
+ spec = {
+ { import = "plugins.core" },
+ { import = "plugins.eyecandy" },
+ { import = "plugins.lsp" },
+ { import = "plugins.lang" },
+ { import = "plugins.extra.copilot" },
+ { import = "plugins.extra.vim-easy-align" },
+ { import = "plugins.extra.vim-fugitive" },
+ --{ import = "plugins.extra.feline" },
+ },
+ change_detection = {
+ enabled = true,
+ notify = false,
+ },
})
--vim.api.nvim_create_autocmd({ "BufEnter", "BufRead" }, {