2021-12-08 09:38:24 -06:00
|
|
|
require("keybindings")
|
2022-01-24 00:03:41 -06:00
|
|
|
require("plugins")
|
2021-12-08 09:38:24 -06:00
|
|
|
|
|
|
|
-- general
|
|
|
|
lvim.log.level = "warn"
|
|
|
|
lvim.format_on_save = true
|
|
|
|
|
2022-01-24 00:03:41 -06:00
|
|
|
-- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile
|
2021-12-08 09:38:24 -06:00
|
|
|
lvim.builtin.dashboard.active = true
|
2022-01-24 00:03:41 -06:00
|
|
|
lvim.builtin.notify.active = true
|
2021-12-08 09:38:24 -06:00
|
|
|
lvim.builtin.terminal.active = true
|
|
|
|
lvim.builtin.nvimtree.setup.view.side = "left"
|
|
|
|
lvim.builtin.nvimtree.show_icons.git = 0
|
|
|
|
|
2022-01-24 00:03:41 -06:00
|
|
|
-- if you don't want all the parsers change this to a table of the ones you want
|
2021-12-08 09:38:24 -06:00
|
|
|
lvim.builtin.treesitter.ensure_installed = {
|
|
|
|
"bash",
|
2022-01-24 00:03:41 -06:00
|
|
|
"javascript",
|
2021-12-08 09:38:24 -06:00
|
|
|
"json",
|
|
|
|
"lua",
|
|
|
|
"python",
|
2022-01-24 00:03:41 -06:00
|
|
|
"typescript",
|
2021-12-08 09:38:24 -06:00
|
|
|
"css",
|
|
|
|
"rust",
|
|
|
|
"yaml",
|
2022-01-24 00:03:41 -06:00
|
|
|
"go"
|
2021-12-08 09:38:24 -06:00
|
|
|
}
|
|
|
|
|
2022-01-24 00:03:41 -06:00
|
|
|
lvim.builtin.treesitter.ignore_install = { "haskell" }
|
2021-12-08 09:38:24 -06:00
|
|
|
lvim.builtin.treesitter.highlight.enabled = true
|
|
|
|
|
|
|
|
-- settings
|
|
|
|
local opt = vim.opt
|
|
|
|
opt.timeoutlen = 500
|
2022-01-24 00:03:41 -06:00
|
|
|
-- colorscheme
|
|
|
|
lvim.builtin.lualine.options.theme = "dracula"
|
|
|
|
lvim.colorscheme = "dracula"
|
|
|
|
|
|
|
|
|