♻️ refactor(nvim): abbrv for options
This commit is contained in:
parent
cb3c62a3ab
commit
02e3a6fd77
1 changed files with 11 additions and 10 deletions
|
@ -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",
|
||||||
|
|
Loading…
Add table
Reference in a new issue