-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
38 lines (38 loc) · 1007 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
return {
lsp = {
formatting = {
format_on_save = {
enabled = true,
allow_filetypes = {
"javascript",
"liquid",
"typescriupt",
"typescriptreact",
"lua",
"dart",
},
},
},
servers = {
"dartls",
},
setup_handlers = {
dartls = function(_, opts) require("flutter-tools").setup { lsp = opts } end,
},
},
highlights = {
init = {
Normal = { bg = "NONE", ctermbg = "NONE" },
NormalNC = { bg = "NONE", ctermbg = "NONE" },
CursorColumn = { cterm = {}, ctermbg = "NONE", ctermfg = "NONE" },
CursorLine = { cterm = {}, ctermbg = "NONE", ctermfg = "NONE" },
CursorLineNr = { cterm = {}, ctermbg = "NONE", ctermfg = "NONE" },
LineNr = {},
SignColumn = {},
StatusLine = {},
NeoTreeNormal = { bg = "NONE", ctermbg = "NONE" },
NeoTreeNormalNC = { bg = "NONE", ctermbg = "NONE" },
},
},
colorscheme = "catppuccin",
}