mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-30 21:46:32 +00:00
14 lines
425 B
Lua
14 lines
425 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
|
|
|
|
local opt = vim.opt
|
|
|
|
opt.number = true
|
|
opt.relativenumber = true
|
|
opt.modeline = true
|
|
opt.spelllang = { "en", "fi" }
|
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|