2022-06-20 11:22:38 -05:00
|
|
|
|
-- settings
|
|
|
|
|
local opt = vim.opt
|
|
|
|
|
opt.timeoutlen = 200
|
2022-07-05 11:40:56 -05:00
|
|
|
|
-- opt.cmdheight = 0 -- broken??
|
2022-09-06 07:49:42 -05:00
|
|
|
|
opt.listchars:append({ tab = "⍿·", trail = "×" })
|
|
|
|
|
vim.opt.list = true
|
2022-06-20 11:22:38 -05:00
|
|
|
|
|
|
|
|
|
-- lvim specific settings
|
|
|
|
|
-- general
|
|
|
|
|
lvim.log.level = "warn"
|
|
|
|
|
lvim.format_on_save = false
|
|
|
|
|
lvim.colorscheme = "catppuccin"
|
|
|
|
|
|
|
|
|
|
-- if you don't want all the parsers change this to a table of the ones you want
|
|
|
|
|
lvim.builtin.treesitter.ensure_installed = {
|
|
|
|
|
"bash",
|
|
|
|
|
"javascript",
|
|
|
|
|
"json",
|
|
|
|
|
"lua",
|
|
|
|
|
"python",
|
|
|
|
|
"typescript",
|
|
|
|
|
"tsx",
|
|
|
|
|
"css",
|
|
|
|
|
"rust",
|
|
|
|
|
"yaml",
|
|
|
|
|
"toml"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lvim.builtin.treesitter.highlight.enabled = true
|