-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
32 lines (27 loc) · 760 Bytes
/
Copy pathinit.lua
File metadata and controls
32 lines (27 loc) · 760 Bytes
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
-- local actions = require "telescope.actions"
-- theme settings
-- local schemes = { "gruvbox-material", "everforest", "nordfox", "duskfox" }
local config = {
-- disable default plugins
enabled = {
bufferline = true,
neo_tree = true,
lualine = true,
gitsigns = true,
colorizer = true,
toggle_term = true,
comment = true,
symbols_outline = true,
indent_blankline = true,
dashboard = true,
which_key = true,
neoscroll = true,
ts_rainbow = true,
ts_autotag = true,
},
-- disable astronvim ui feature
ui = { nui_input = true, telescope_select = true },
-- diagnostics configuration (for vim.diagnostics.config({}))
diagnostics = { virtual_text = true, underline = true },
}
return config