flake

Francesco Saccone's Nix flake.
git clone https://git.francescosaccone.com/flake
Log | Files | Refs | README | LICENSE

visrc.lua (313B)


      1 require('vis')
      2 
      3 vis.events.subscribe(vis.events.WIN_OPEN, function(win)
      4   vis:command('set autoindent on')
      5   vis:command('set colorcolumn 80')
      6   vis:command('set expandtab off')
      7   vis:command('set number')
      8   vis:command('set show-spaces on')
      9   vis:command('set show-tabs on')
     10   vis:command('set tabwidth 8')
     11 end)