Compare commits
3 Commits
eb59ad7abc
...
405d1fe61a
| Author | SHA1 | Date |
|---|---|---|
|
|
405d1fe61a | |
|
|
8c91b0bb43 | |
|
|
7d9d12510b |
5
init.lua
5
init.lua
|
|
@ -1,4 +1,4 @@
|
||||||
require("options")
|
require("options.default")
|
||||||
require("keymaps")
|
require("keymaps")
|
||||||
|
|
||||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
|
|
@ -9,7 +9,8 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
"--filter=blob:none",
|
"--filter=blob:none",
|
||||||
"https://github.com/folke/lazy.nvim.git",
|
"https://github.com/folke/lazy.nvim.git",
|
||||||
"--branch=stable", -- latest stable release
|
"--branch=stable", -- latest stable release
|
||||||
lazypath, })
|
lazypath,
|
||||||
|
})
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,3 +9,7 @@ vim.opt.undofile = true
|
||||||
vim.opt.undolevels = 1000
|
vim.opt.undolevels = 1000
|
||||||
|
|
||||||
vim.opt.updatetime = 500
|
vim.opt.updatetime = 500
|
||||||
|
|
||||||
|
vim.opt.foldmethod = "expr"
|
||||||
|
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
|
||||||
|
vim.opt.foldenable = true
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue