-- 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.lsp.enable("ty") vim.g.lazyvim_python_lsp = "" --- 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