♻️ refactor(nvim): abbrv for options

This commit is contained in:
Sergio Laín 2024-02-28 11:17:08 +01:00
parent cb3c62a3ab
commit 02e3a6fd77
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -1,33 +1,34 @@
-- Options are automatically loaded before lazy.nvim startup -- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here -- Add any additional options here
local o = vim.g local go = vim.g
local o = vim.opt
-- Optimizations on startup -- Optimizations on startup
vim.loader.enable() vim.loader.enable()
-- Define leader key -- Define leader key
o.mapleader = " " go.mapleader = " "
o.maplocalleader = "\\" go.maplocalleader = "\\"
-- Autoformat on save (Global) -- Autoformat on save (Global)
o.autoformat = true go.autoformat = true
-- Font -- Font
o.gui_font_default_size = 10 go.gui_font_default_size = 10
o.gui_font_size = o.gui_font_default_size go.gui_font_size = go.gui_font_default_size
o.gui_font_face = "JetBrainsMono Nerd Font" go.gui_font_face = "JetBrainsMono Nerd Font"
-- Enable EditorConfig integration -- Enable EditorConfig integration
o.editorconfig = true go.editorconfig = true
-- Disable some repl providers -- Disable some repl providers
for _, provider in ipairs({ "node", "perl", "python3", "ruby" }) do for _, provider in ipairs({ "node", "perl", "python3", "ruby" }) do
vim.g["loaded_" .. provider .. "_provider"] = 0 go["loaded_" .. provider .. "_provider"] = 0
end end
-- Root dir detection -- Root dir detection
vim.g.root_spec = { go.root_spec = {
"lsp", "lsp",
{ ".git", "lua", ".obsidian", "package.json", "Makefile", "go.mod", "cargo.toml", "pyproject.toml", "src" }, { ".git", "lua", ".obsidian", "package.json", "Makefile", "go.mod", "cargo.toml", "pyproject.toml", "src" },
"cwd", "cwd",