-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.lua
53 lines (49 loc) · 1.2 KB
/
config.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
local colors = require("ronny.colors")
local M = {}
M = {
colors = colors,
display = {
monokai_original = false,
only_CursorLineNr = true,
hi_relativenumber = false,
hi_unfocus_window = false,
hi_formatted_text = true,
hi_comment_italic = true
},
plugins = {
treesitter = true,
telescope = true,
nvimtree = true,
nvim_cmp = true,
whichkey = true,
gitgutter = true,
gitsigns = true,
indentblankline = true,
},
better_syntax = {
c = true,
cpp = true,
json = true,
html = true,
php = true,
css = true,
javascript = true,
typescript = true,
xml = true,
ruby = true,
yaml = true,
sql = true,
sh = true,
lua = true,
tex = true,
python = true,
go = true,
markdown = true,
orgmode = true,
}
}
function M.update(opts)
M = vim.tbl_deep_extend("force", M, opts)
return M
end
return M