logo

dotfiles

My dotfiles, one branch per machine, rebased on base git clone https://hacktivis.me/git/dotfiles.git
commit: a67ff97bcee3f33019587dc248e9e6afd1c5404d
parent b0979f8bfd9c258e28c54dd24190d8153a07dbd0
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun,  5 May 2024 15:53:27 +0200

visrc.lua: Remove dashes in options (vis 0.9 change)

Diffstat:

M.config/vis/visrc.lua6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.config/vis/visrc.lua b/.config/vis/visrc.lua @@ -2,9 +2,9 @@ require("vis") vis.events.subscribe(vis.events.WIN_OPEN, function(win) vis:command('set rnu') - vis:command('set show-eof off') - vis:command('set show-tabs') - vis:command('set show-newline') + vis:command('set showeof off') + vis:command('set showtabs') + vis:command('set shownewline') vis:command('set autoindent') vis:command('set theme gruvbox') vis:command('set tabwidth 4')