mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
1.9 KiB
Lua
103 lines
1.9 KiB
Lua
2 years ago
|
---@class Config
|
||
|
local config = {}
|
||
|
|
||
|
config.options = {
|
||
|
transparent_background = false,
|
||
|
term_colors = false,
|
||
|
dim_inactive = {
|
||
|
enable = false,
|
||
|
shade = "dark",
|
||
|
percentage = 0.15,
|
||
|
},
|
||
|
styles = {
|
||
|
comments = { "italic" },
|
||
|
conditionals = { "italic" },
|
||
|
<<<<<<< HEAD
|
||
|
loops = {},
|
||
|
functions = {},
|
||
|
keywords = {},
|
||
|
strings = {},
|
||
|
variables = {},
|
||
|
numbers = {},
|
||
|
booleans = {},
|
||
|
properties = {},
|
||
|
types = {},
|
||
|
operators = {},
|
||
|
=======
|
||
|
loops = "NONE",
|
||
|
functions = "NONE",
|
||
|
keywords = "NONE",
|
||
|
strings = "NONE",
|
||
|
variables = "NONE",
|
||
|
numbers = "NONE",
|
||
|
booleans = "NONE",
|
||
|
properties = "NONE",
|
||
|
types = "NONE",
|
||
|
operators = "NONE",
|
||
|
>>>>>>> origin/dev
|
||
|
},
|
||
|
integrations = {
|
||
|
treesitter = true,
|
||
|
native_lsp = {
|
||
|
enabled = true,
|
||
|
virtual_text = {
|
||
|
errors = { "italic" },
|
||
|
hints = { "italic" },
|
||
|
warnings = { "italic" },
|
||
|
information = { "italic" },
|
||
|
},
|
||
|
underlines = {
|
||
|
errors = { "underline" },
|
||
|
hints = { "underline" },
|
||
|
warnings = { "underline" },
|
||
|
information = { "underline" },
|
||
|
},
|
||
|
},
|
||
|
coc_nvim = false,
|
||
|
lsp_trouble = false,
|
||
|
cmp = true,
|
||
|
lsp_saga = false,
|
||
|
gitgutter = false,
|
||
|
gitsigns = true,
|
||
|
telescope = true,
|
||
|
nvimtree = {
|
||
|
enabled = true,
|
||
|
show_root = false,
|
||
|
transparent_panel = false,
|
||
|
},
|
||
|
neotree = {
|
||
|
enabled = false,
|
||
|
show_root = false,
|
||
|
transparent_panel = false,
|
||
|
},
|
||
|
which_key = false,
|
||
|
indent_blankline = {
|
||
|
enabled = true,
|
||
|
colored_indent_levels = false,
|
||
|
},
|
||
|
dashboard = true,
|
||
|
neogit = false,
|
||
|
vim_sneak = false,
|
||
|
fern = false,
|
||
|
barbar = false,
|
||
|
bufferline = true,
|
||
|
markdown = true,
|
||
|
lightspeed = false,
|
||
|
leap = false,
|
||
|
ts_rainbow = false,
|
||
|
hop = false,
|
||
|
notify = true,
|
||
|
telekasten = true,
|
||
|
symbols_outline = true,
|
||
|
},
|
||
|
color_overrides = {},
|
||
|
custom_highlights = {},
|
||
|
}
|
||
|
|
||
|
function config.set_options(opts)
|
||
|
opts = opts or {}
|
||
|
config.options = vim.tbl_deep_extend("force", config.options, opts)
|
||
|
end
|
||
|
|
||
|
return config
|