nixos/home/editor/neovim/options.lua

13 lines
218 B
Lua
Raw Normal View History

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