dotfiles/dotconfig/nvim/lua/modules/set.lua
2024-05-28 20:42:24 +02:00

11 lines
264 B
Lua

vim.o.tabstop = 2
vim.o.softtabstop = 2
vim.o.shiftwidth = 2
vim.o.expandtab = true
vim.o.autoindent = true
vim.o.smartindent = true
vim.o.number = true
vim.o.mouse = 'a'
-- this is default in neovim
-- vim.cmd('filetype plugin indent on')
-- vim.cmd('syntax on')