Files
neovim-config/lua/config/options.lua
T
rootiest e83cca3265 🎨 style(options): add style to options file
Add some style, particularly to the ROOTIEST section of the options configuration file
2024-08-04 18:00:24 -04:00

28 lines
1.1 KiB
Lua

-- -----------------------------------------------------------------------------
-- --------------------------------- OPTIONS -----------------------------------
-- -----------------------------------------------------------------------------
-- Leader Key
vim.g.mapleader = " "
-- ----------------------------------- LSP --------------------------------------
-- We don't need perl
vim.g.loaded_perl_provider = 0
-- Prefer basedpyright
vim.g.lazyvim_python_lsp = "basedpyright"
-- --------------------------------- GIT-BLAME ----------------------------------
vim.g.gitblame_display_virtual_text = 0 -- Disable virtual text
-- --------------------------------- ROOTIEST -----------------------------------
-- stylua: ignore start
vim.g.aitool = "codeium" --Options: codeium, copilot, tabnine, minuet, none
vim.g.usewakatime = true --Options: true, false
vim.g.usehardtime = false --Options: true, false
vim.g.useimage = true --Options: true, false
-- stylua: ignore end
-- ----------------------------------- USER -------------------------------------
vim.o.background = "dark"
vim.g.DashboardHeaderColor = "#A6E3A1"