12 lines
367 B
Lua
12 lines
367 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 hereby
|
|
vim.g.autoformat = false
|
|
|
|
vim.g.lazyvim_python_lsp = "basedpyright"
|
|
|
|
vim.o.tabstop = 4
|
|
vim.o.expandtab = true
|
|
vim.o.softtabstop = 4
|
|
vim.o.shiftwidth = 4
|