Compare commits
No commits in common. "f017d4afcfff744e022bff2f3fa765cade21bbbc" and "a327dd4d639c69b24d4c2168d394aafae31e7f18" have entirely different histories.
f017d4afcf
...
a327dd4d63
3 changed files with 10 additions and 9 deletions
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
# yamllint disable rule:line-length
|
|
||||||
autostarts:
|
autostarts:
|
||||||
pre: # blocking tasks before others; ie: backup
|
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
|
- "truncate -s 0 --no-create ~/.gnupg/trezor/gpg-agent.log" # this grows ridiculously large/fast, clear it on login - before backup
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
" NOTE: don't add more LSPs here, use 'coc.nvim' - it offers better completion
|
" 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'
|
" 'vim'/common elements are held here while 'nvim' has another config: '.config/nvim/init.vim'
|
||||||
call plug#begin('~/.vim/exts')
|
call plug#begin('~/.vim/exts')
|
||||||
" Plug 'AlexvZyl/nordic.nvim', { 'branch': 'main' } " replaced w/ ayu
|
Plug 'AlexvZyl/nordic.nvim', { 'branch': 'main' }
|
||||||
Plug 'ayu-theme/ayu-vim'
|
|
||||||
Plug 'powerman/vim-plugin-AnsiEsc'
|
Plug 'powerman/vim-plugin-AnsiEsc'
|
||||||
Plug 'fladson/vim-kitty'
|
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'
|
" replaced 'ansible-vim' that *was* here w/ dist pkg, used by 'coc-ansible'
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
Plug 'yaegassy/coc-ansible', {'do': 'yarn install --frozen-lockfile'}
|
Plug 'yaegassy/coc-ansible', {'do': 'yarn install --frozen-lockfile'}
|
||||||
|
@ -17,9 +17,12 @@ autocmd FileType yaml setlocal et ts=2 ai sw=2 nu sts=0
|
||||||
set updatetime=750
|
set updatetime=750
|
||||||
filetype plugin on
|
filetype plugin on
|
||||||
syntax on
|
syntax on
|
||||||
" let ayucolor="light"
|
" colorscheme nord
|
||||||
" let ayucolor="mirage"
|
" colorscheme nordic
|
||||||
let ayucolor="dark"
|
" 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
|
||||||
colorscheme ayu
|
colorscheme ayu
|
||||||
match Error /\%xA0/
|
match Error /\%xA0/
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ DOTS=(
|
||||||
'.config/swaylock/config'
|
'.config/swaylock/config'
|
||||||
'.local/bin/backup_home'
|
'.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
|
'.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
|
# to avoid hacky pwd/dirname stuff w/ $0 [for now?], inline the path to the repo where copies are held
|
||||||
|
|
Loading…
Reference in a new issue