diff options
-rw-r--r-- | .config/vis/visrc.lua | 22 | ||||
-rwxr-xr-x | dots | 4 |
2 files changed, 20 insertions, 6 deletions
diff --git a/.config/vis/visrc.lua b/.config/vis/visrc.lua index 858f2b4..6e2edb4 100644 --- a/.config/vis/visrc.lua +++ b/.config/vis/visrc.lua @@ -1,10 +1,24 @@ require "vis" -vis.events.subscribe(vis.events.WIN_OPEN, function (window) - vis:command "set autoindent" - vis:command "set colorcolumn 121" +local function plugin (name) + local ok, loaded = pcall(require, name) + if not ok then + vis:message(loaded) + end + return loaded +end + + +plugin "plugins.hare_detect" +plugin "plugins/vis-spellcheck" + + +vis.events.subscribe(vis.events.WIN_OPEN, function (win) vis:command "set number" - vis:command "set relativenumber" + vis:command "set relative" vis:command "set show-tabs" + vis:command "set colorcolumn 121" + vis:command "set autoindent" + vis:command "set tabwidth 4" end) @@ -49,8 +49,8 @@ list() { case $1 in -get) get;; -put) put;; +get|pull) get;; +put|push) put;; clear) clear;; list) list;; *) exit 1;; |