dotfiles/.config/nvim/lua/config/options.lua

14 lines
396 B
Lua
Raw Normal View History

2023-09-17 23:36:17 +02: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
2021-04-20 18:10:56 +02:00
2023-09-17 23:36:17 +02:00
local opt = vim.opt
2021-04-18 18:51:03 +02:00
2023-09-17 23:36:17 +02:00
opt.relativenumber = false
2023-09-20 12:25:15 +02:00
opt.clipboard = ""
2021-04-18 18:51:03 +02:00
2023-02-02 09:37:20 +01:00
vim.o.fillchars = "stl: ,stlnc: ,eob:🮙"
2023-09-20 12:25:15 +02:00
vim.o.autochdir = true
vim.o.updatetime = 100
vim.g.do_filetype_lua = 1