dotfiles/home/dot_config/lvim/lua/config/options.lua

31 lines
669 B
Lua
Raw Normal View History

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-07-08 20:43:29 +01:00
vim.lsp.enable("ty")
2025-08-26 08:57:19 +01:00
vim.g.lazyvim_python_lsp = ""
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