14 lines
241 B
Lua
14 lines
241 B
Lua
-- Options
|
|
vim.g.mapleader = ' '
|
|
vim.g.maplocalleader = ' '
|
|
|
|
vim.opt.cursorline = true
|
|
vim.opt.scrolloff = 15
|
|
vim.opt.wrap = true
|
|
vim.o.number = true
|
|
vim.o.relativenumber = true
|
|
|
|
vim.o.tabstop = 4
|
|
vim.o.shiftwidth = 4
|
|
vim.o.expandtab = true
|