nvim/lua/cosmic/config/examples/editor.lua
2021-11-10 14:42:28 -08:00

12 lines
197 B
Lua

-- Override Cosmic editor options
local opt = vim.opt
local g = vim.g
-- Default leader is <space>
g.mapleader = ','
-- Default indent = 2
opt.tabstop = 4
opt.softtabstop = 4
opt.shiftwidth = 4