-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.lua
42 lines (41 loc) · 1.03 KB
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
spec = {
{ import = "plugins.behavior" },
{ import = "plugins.games" },
{ import = "plugins.git" },
{ import = "plugins.lsp" },
{ import = "plugins.lsp.rust" },
{ import = "plugins.lsp.go" },
{ import = "plugins.telescope" },
{ import = "plugins.theme" },
},
defaults = {
lazy = true,
},
dev = {
path = "~/GitHub",
pattern = { "GR3YH4TT3R93" },
fallback = true,
},
change_detection = { notify = false },
checker = { enabled = true, notify = false },
install = {
colorscheme = { "onedark" },
},
performance = {
rtp = {
disabled_plugins = {
"netrwPlugin",
"tutor",
},
},
},
})
require("settings")
require("keymaps")