diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-06-19 11:13:29 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-06-19 11:13:29 -0700 |
| commit | d20ba598b33debd069bc5646182f21e6fd7a127f (patch) | |
| tree | d39868dfe96ad9bfb1f18a2245a16143904ae208 | |
| parent | 98120e50c940354ac70c21a1f0ad89b8ef3568ae (diff) | |
vis setup
| -rw-r--r-- | config/vis/visrc.lua | 13 | ||||
| -rwxr-xr-x | setup.sh | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/config/vis/visrc.lua b/config/vis/visrc.lua new file mode 100644 index 0000000..50b12bd --- /dev/null +++ b/config/vis/visrc.lua @@ -0,0 +1,13 @@ +-- load standard vis module, providing parts of the Lua API +require('vis') + +vis.events.subscribe(vis.events.INIT, function() + -- Your global configuration options +end) + +vis.events.subscribe(vis.events.WIN_OPEN, function(win) -- luacheck: no unused args + -- Your per window configuration options e.g. + vis:command('set nu') + vis:command('set tw 4') + vis:command('set et') +end) @@ -30,6 +30,7 @@ if confirm "Check and install symlinks?"; then ln -s ${here}config/tmux.conf ${there}.tmux.conf ln -s ${here}config/xserverrc ${there}.xserverrc ln -s ${here}config/Xdefaults ${there}.Xdefaults + ln -s ${here}config/vis ${there}.config/vis ln -s ${here}config/alacritty ${there}.config/alacritty ln -s ${here}config/qutebrowser ${there}.config/qutebrowser ln -s ${here}config/fbterm/fbtermrc ${there}.config/fbtermrc |
