2024-10-08 12:37:20 +01: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
|
|
|
|
|
|
2025-06-09 13:58:14 +01:00
|
|
|
vim.g.lazyvim_python_lsp = "ty"
|
2024-10-08 12:37:20 +01:00
|
|
|
|
|
|
|
|
--- 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
|