You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
345 B
Lua

local set = vim.opt
set.nu = true
set.tabstop = 2
set.shiftwidth = 2
set.hlsearch = false
set.incsearch = true
set.smartindent = true
set.wrap = false
set.encoding = 'utf-8'
set.guifont = 'Iosevka Nerd Font Mono 14'
vim.cmd([[
set rtp^="home/rf/.opam/default/share/ocp-indent/vim"
]])
-- Lower update time the better (ms)
set.updatetime = 50