-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
115 lines (108 loc) · 1.87 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
local colorscheme = "ayu-dark"
vim.loader.enable()
vim.g.loaded_python3_provider = 0
require("core")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or 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,
})
end
vim.opt.rtp:prepend(lazypath)
require("custom")
require("lazy").setup({
{ import = "plugins.themes" },
{ import = "plugins" },
{ import = "extras" },
{ import = "custom.plugins" },
}, {
defaults = { lazy = true },
install = {
colorscheme = { colorscheme },
},
ui = {
border = "rounded",
title = "Lazy",
},
dev = {
path = "~/dev/projects/neovim",
fallback = false,
},
rocks = {
hererocks = false,
enabled = false,
},
performance = {
cache = {
enabled = true,
},
rtp = {
disabled_plugins = {
"matchit",
"matchparen",
"2html_plugin",
"tohtml",
"getscript",
"getscriptPlugin",
"gzip",
"logipat",
"netrw",
"netrwPlugin",
"netrwSettings",
"netrwFileHandlers",
"tar",
"tarPlugin",
"rrhelper",
"spellfile_plugin",
"vimball",
"vimballPlugin",
"zip",
"zipPlugin",
-- "tutor",
"rplugin",
"syntax",
"synmenu",
"optwin",
"compiler",
"bugreport",
"ftplugin",
},
},
change_detection = {
notify = false,
enabled = false,
},
},
})
vim.opt.wildignore:append({
"blue.vim",
"darkblue.vim",
"delek.vim",
"desert.vim",
"elflord.vim",
"evening.vim",
"industry.vim",
"habamax.vim",
"koehler.vim",
"lunaperche.vim",
"morning.vim",
"murphy.vim",
"pablo.vim",
"peachpuff.vim",
"quiet.vim",
"ron.vim",
"shine.vim",
"slate.vim",
"sorbet.vim",
"retrobox.vim",
"torte.vim",
"wildcharm.vim",
"zaibatsu.vim",
"zellner.vim",
})
vim.cmd("colorscheme " .. colorscheme)