blob: 4398c87486202006d3b8753de12cce5e034e6603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- 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.g.snacks_animate = false
vim.g.autoformat = false
local opt = vim.opt
opt.relativenumber = true
opt.swapfile = false
opt.shiftwidth = 4
opt.smartindent = true
opt.shiftround = false
opt.tabstop = 4
opt.clipboard = "unnamedplus"
|