dotfiles/dot_config/nvim/lua/custom/chadrc.lua

25 lines
361 B
Lua
Raw Normal View History

2024-02-17 14:33:09 +01:00
---@type ChadrcConfig
local M = {}
M.plugins = "custom.plugins"
M.mappings = require "custom.mappings"
M.ui = {
2024-02-21 09:49:31 +01:00
theme = "onedark",
2024-02-17 14:33:09 +01:00
statusline = {
theme = "default",
separator_style = "arrow",
},
tabufline = {
lazyload = false,
show_numbers = true,
},
2024-02-19 23:13:05 +01:00
hl_override = {
CursorLine = {
bg = "one_bg",
},
},
2024-02-17 14:33:09 +01:00
}
return M