From cbd97e2e356ddaa4095152e32473774defc53f63 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Fri, 21 Jun 2024 15:01:39 -0500 Subject: [PATCH 1/3] update.sh: track vim (user) autoload --- update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update.sh b/update.sh index bb64bb6..7c49995 100755 --- a/update.sh +++ b/update.sh @@ -24,6 +24,7 @@ DOTS=( '.config/swaylock/config' '.local/bin/backup_home' '.local/bin/note-taker.sh' # run by Kitty in a 'triplesplit' session, one of many of autostart 'wants' in '...-i3ipc.yml' above + '.vim/autoload/' # vim-plug, mainly ) # to avoid hacky pwd/dirname stuff w/ $0 [for now?], inline the path to the repo where copies are held From 55195801675ce9db06c3c044c8efa808b2d6f1fa Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Fri, 21 Jun 2024 15:02:16 -0500 Subject: [PATCH 2/3] vimrc: clean up/reorganize, settle on colors --- outerheaven.init3.home/.vimrc | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/outerheaven.init3.home/.vimrc b/outerheaven.init3.home/.vimrc index 31bb4d8..d8f10db 100644 --- a/outerheaven.init3.home/.vimrc +++ b/outerheaven.init3.home/.vimrc @@ -1,10 +1,10 @@ " NOTE: don't add more LSPs here, use 'coc.nvim' - it offers better completion " 'vim'/common elements are held here while 'nvim' has another config: '.config/nvim/init.vim' call plug#begin('~/.vim/exts') -Plug 'AlexvZyl/nordic.nvim', { 'branch': 'main' } +" Plug 'AlexvZyl/nordic.nvim', { 'branch': 'main' } " replaced w/ ayu +Plug 'ayu-theme/ayu-vim' Plug 'powerman/vim-plugin-AnsiEsc' Plug 'fladson/vim-kitty' -Plug 'ayu-theme/ayu-vim' " or other package manager " replaced 'ansible-vim' that *was* here w/ dist pkg, used by 'coc-ansible' Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'yaegassy/coc-ansible', {'do': 'yarn install --frozen-lockfile'} @@ -17,12 +17,9 @@ autocmd FileType yaml setlocal et ts=2 ai sw=2 nu sts=0 set updatetime=750 filetype plugin on syntax on -" colorscheme nord -" colorscheme nordic -" colorscheme slate -" let ayucolor="light" " for light version of theme -" let ayucolor="mirage" " for mirage version of theme -let ayucolor="dark" " for dark version of theme +" let ayucolor="light" +" let ayucolor="mirage" +let ayucolor="dark" colorscheme ayu match Error /\%xA0/ From f017d4afcfff744e022bff2f3fa765cade21bbbc Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Fri, 21 Jun 2024 15:02:55 -0500 Subject: [PATCH 3/3] autostarts: address yamllint --- outerheaven.init3.home/.config/autostart-i3ipc.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/outerheaven.init3.home/.config/autostart-i3ipc.yml b/outerheaven.init3.home/.config/autostart-i3ipc.yml index 3994fe0..821c515 100644 --- a/outerheaven.init3.home/.config/autostart-i3ipc.yml +++ b/outerheaven.init3.home/.config/autostart-i3ipc.yml @@ -1,10 +1,11 @@ --- +# yamllint disable rule:line-length autostarts: pre: # blocking tasks before others; ie: backup - "truncate -s 0 --no-create ~/.gnupg/trezor/gpg-agent.log" # this grows ridiculously large/fast, clear it on login - before backup - "foot backup_home" # custom 'restic'/'pass'-driven backup script in '~/.local/bin' - weekend: [] # blocking tasks to run on weekends, after 'pre' but before the rest in 'common'. 'work' is excluded from weekends. -# - "/usr/bin/flatpak update --user --noninteractive --assumeyes | systemd-cat -t flatpak-update" + weekend: [] # blocking tasks to run on weekends, after 'pre' but before the rest in 'common'. 'work' is excluded from weekends. + # - "/usr/bin/flatpak update --user --noninteractive --assumeyes | systemd-cat -t flatpak-update" common: - "/usr/bin/mako" - "/usr/libexec/xfce-polkit" # minimal polkit (gnome is busted), LXQt has an alright option too