Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

FIX: small tweaks to vis, ssh

+6 -6
+1
home.nix
··· 53 53 sqlite 54 54 age 55 55 just 56 + mdr 56 57 unstable.catgirl 57 58 plan9port 58 59 unstable.rc
-1
ssh/extra
··· 136 136 137 137 Host glitch 138 138 HostName 100.83.137.68 139 - User ambient 140 139 IdentityFile ~/.ssh/id_ed25519
+5 -5
vis/visrc.lua
··· 1 1 require('vis') 2 - local plugin_manager = 'plugins/vis-plug' 3 2 local plugins = { 4 - { 'timoha/vis-acme', theme = true, file = 'acme' }, 3 + --{ 'timoha/vis-acme', theme = true, file = 'acme' }, 5 4 { 'milhnl/vis-format' }, 6 5 { url = 'https://git.cepl.eu/cgit/vis/vis-fzf-open' }, 7 6 { url = 'https://gitlab.com/muhq/vis-lspc.git' }, 8 - { url = 'https://repo.or.cz/vis-parkour.git', alias = 'vis-parkour' } 7 + { url = 'https://repo.or.cz/vis-parkour.git', alias = 'vis-parkour' }, 9 8 } 10 9 11 - function setup_plug() 10 + local function setup_plug() 12 11 if not pcall(require, 'plugins/vis-plug') then 13 12 os.execute('git clone --quiet https://github.com/erf/vis-plug ' .. 14 13 (os.getenv('XDG_CONFIG_HOME') or os.getenv('HOME') .. '/.config') ··· 20 19 21 20 plug.init(plugins, true) 22 21 23 - function configure_plugin(name, config) 22 + local function configure_plugin(name, config) 24 23 if vis:module_exist(name) then 25 24 local module = require(name) 26 25 config(module) ··· 60 59 vis:command('set autoindent on') 61 60 vis:command('set cursorline on') 62 61 vis:command('set tabwidth 4') 62 + vis:command('set theme zenburn') 63 63 end) 64 64 return nil