29 lines
659 B
Lua
29 lines
659 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
|
||
|
|
|
||
|
|
vim.g.lazyvim_python_lsp = "basedpyright"
|
||
|
|
|
||
|
|
--- Whitespace ---
|
||
|
|
vim.o.expandtab = true
|
||
|
|
vim.o.smartindent = true
|
||
|
|
vim.o.tabstop = 4
|
||
|
|
vim.o.shiftwidth = 4
|
||
|
|
|
||
|
|
--- Line numbering ---
|
||
|
|
vim.opt.relativenumber = true
|
||
|
|
vim.opt.number = true
|
||
|
|
|
||
|
|
--- Ruler for line length ---
|
||
|
|
vim.o.colorcolumn = "80,100"
|
||
|
|
|
||
|
|
--- Show certain characters ---
|
||
|
|
vim.opt.listchars = {
|
||
|
|
trail = "•",
|
||
|
|
extends = ">",
|
||
|
|
precedes = "<",
|
||
|
|
nbsp = "␣",
|
||
|
|
tab = "→,",
|
||
|
|
}
|
||
|
|
vim.opt.list = true
|