dotfiles/home/private_dot_config/lvim/lua/settings.lua
2022-10-26 13:45:11 -05:00

32 lines
618 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- settings
local opt = vim.opt
opt.timeoutlen = 200
opt.cmdheight = 0 -- broken??
opt.listchars:append({ tab = "⍿·", trail = "×" })
opt.list = true
opt.number = true
opt.relativenumber = true
-- 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