11 lines
264 B
Lua
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')
|