From 72d448e384249103748ee83b587c45924e4bc44d Mon Sep 17 00:00:00 2001 From: sefidel Date: Thu, 10 Feb 2022 00:24:03 +0900 Subject: Initial commit --- fnl/nvrc/options.fnl | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 fnl/nvrc/options.fnl (limited to 'fnl/nvrc/options.fnl') diff --git a/fnl/nvrc/options.fnl b/fnl/nvrc/options.fnl new file mode 100644 index 0000000..b9a59bc --- /dev/null +++ b/fnl/nvrc/options.fnl @@ -0,0 +1,51 @@ +(import-macros {: set! : setv!} :nvrc.macro.set) +(local {: disable-builtins!} (require :nvrc.macro.misc)) + +(set! clipboard :unnamedplus) + +; Interface +(set! cul) +(set! cmdheight 1) +(set! number) +(set! numberwidth 2) +(set! shortmess+ :sI) +(set! splitbelow) +(set! splitright) +(set! termguicolors) +(set! lazyredraw) + +; Style +(set! expandtab) +(set! tabstop 8) +(set! shiftwidth 2) +(set! smartindent) +(set! list) +(set! listchars {:tab ">-" :extends ">" :precedes "<" :trail "*" :nbsp "+"}) + +; Miscellaneous +(set! ignorecase) +(set! smartcase) +(set! mouse :a) +(set! timeoutlen 400) +(set! updatetime 250) +(set! undofile) +(set! whichwrap+ "<>[]hl") + +(disable-builtins! [:2html_plugin + :getscript + :getscriptPlugin + :gzip + :logipat + :netrw + :netrwPlugin + :netrwSettings + :netrwFileHandlers + :matchit + :tar + :tarPlugin + :rrhelper + :spellfile_plugin + :vimball + :vimballPlugin + :zip + :zipPlugin]) -- cgit 1.4.1