24 lines
426 B
Lua
24 lines
426 B
Lua
-- Cursorline
|
|
vim.o.cursorline = true
|
|
|
|
-- 4 space indent (by default)
|
|
vim.o.tabstop = 4
|
|
vim.o.expandtab = true
|
|
vim.o.softtabstop = 4
|
|
vim.o.shiftwidth = 4
|
|
|
|
-- Relative line numbers
|
|
vim.o.number = true
|
|
vim.o.relativenumber = true
|
|
|
|
-- Disable word wrap
|
|
vim.o.wrap = false
|
|
|
|
-- Split to right & below
|
|
vim.o.splitright = true
|
|
vim.o.splitbelow = true
|
|
|
|
-- Use American English
|
|
vim.o.spelllang = "en_us"
|
|
--vim.o.spellcapcheck = false
|
|
|