nixos/home/editor/neovim/options.lua
Torjus Håkestad c8fa6d6ffe
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m1s
Periodic flake update / flake-update (push) Successful in 1m18s
Make some highlighting changes for vim
2025-02-12 00:25:23 +01:00

19 lines
357 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
vim.o.termguicolors = true
vim.o.list = true
vim.o.listchars = 'tab:» ,trail:·,extends:»,precedes:«,nbsp:␣'