blob: 054acd479f7767dbf092a2b9d8a8f087f9a8f305 (
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.o.tabstop = 4
vim.o.expandtab = true
vim.o.softtabstop = 4
vim.o.shiftwidth = 4
-- Enable autosave on focus lost
vim.cmd([[
augroup autosave
  autocmd!
  autocmd FocusLost,WinLeave * silent! wa
augroup END
]])
  |