22 lines
575 B
Lua
22 lines
575 B
Lua
-- 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
|
|
-- Add any additional options here
|
|
local o = vim.g
|
|
|
|
-- Optimizations on startup
|
|
vim.loader.enable()
|
|
|
|
-- Define leader key
|
|
o.mapleader = " "
|
|
o.maplocalleader = "\\"
|
|
|
|
-- Autoformat on save (Global)
|
|
o.autoformat = true
|
|
|
|
-- Font
|
|
o.gui_font_default_size = 10
|
|
o.gui_font_size = o.gui_font_default_size
|
|
o.gui_font_face = "JetBrainsMono Nerd Font"
|
|
|
|
-- Enable EditorConfig integration
|
|
o.editorconfig = true
|