2024-02-28 01:46:28 +00:00
|
|
|
-- Options
|
2024-02-27 21:16:39 +00:00
|
|
|
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
|
2024-02-28 09:01:01 +00:00
|
|
|
vim.o.expandtab = true
|