-
Notifications
You must be signed in to change notification settings - Fork 7
/
init.lua
38 lines (35 loc) · 828 Bytes
/
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
vim.g.mapleader = ','
_G.global = {}
_G.global.float_border_opts = { border = 'rounded', focusable = false, scope = 'line' }
require('custom')
require('lazy').setup({
spec = {
{ import = 'plugins' },
},
defaults = {
lazy = true,
version = false,
},
install = {
missing = true,
colorscheme = { 'catpuccin' },
},
checker = { enabled = true },
performance = {
rtp = {
disabled_plugins = {
'gzip',
'matchit',
'matchparen',
'netrwPlugin',
'tarPlugin',
'tohtml',
'tutor',
'zipPlugin',
},
},
},
ui = { border = 'rounded' },
})
require('custom.keymaps')
require('custom.autocommands')