12 lines
235 B
Lua
12 lines
235 B
Lua
|
require "custom.extras"
|
||
|
|
||
|
local opt = vim.opt
|
||
|
local g = vim.g
|
||
|
|
||
|
-- Vim options
|
||
|
-- opt.timeoutlen = 10 -- Which-key timeout in ms
|
||
|
opt.backup = false
|
||
|
opt.swapfile = false
|
||
|
opt.encoding = "utf-8"
|
||
|
opt.fileencoding = "utf-8"
|
||
|
opt.shiftwidth = 2
|