13 lines
573 B
Lua
13 lines
573 B
Lua
-- OPTIONS
|
|
|
|
vim.opt.number = true
|
|
vim.opt.relativenumber = true
|
|
vim.opt.spelllang = { 'en', 'fr' }
|
|
vim.opt.showcmd = true -- show command in bottom bar
|
|
vim.opt.cursorline = true -- highlight current line
|
|
vim.cmd('filetype indent on') -- load filetype-specific indent files
|
|
vim.opt.autoindent = true -- use indentation of previous line
|
|
vim.opt.smartindent = true -- use intelligent indentation for C
|
|
vim.opt.wildmenu = true -- visual autocomplete for command menu
|
|
vim.opt.lazyredraw = true -- redraw only when necessary
|
|
vim.opt.showmatch = true -- highlight matching braces
|