mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-30 06:46:37 +00:00
14 lines
448 B
Lua
14 lines
448 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
|
|
vim.g.root_spec = { "lsp", { ".git", "lua" }, "cwd" }
|
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|