1
0
Fork 0
dotfiles/common/.config/nvim/lua/config/options.lua

16 lines
423 B
Lua
Raw Normal View History

2024-05-27 10:43:55 +02:00
-- 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.opt
local g = vim.g
o.shiftwidth = 4
o.tabstop = 4
o.scrolloff = 8
o.conceallevel = 0
2024-06-26 15:49:35 +02:00
g.lazyvim_php_lsp = "intelephense"
2024-07-13 16:07:39 +02:00
g.lazyvim_python_lsp = "basedpyright"
g.lazyvim_python_ruff = "ruff_lsp"