theme update; added code-activator config+setup

This commit is contained in:
yage 2022-01-03 12:46:34 -07:00
parent ee4e180afb
commit 6934e5bb67
6 changed files with 8 additions and 11 deletions

Binary file not shown.

View File

@ -1 +1 @@
/home/w0ryn/.wryn/config/colorschemes/kitty/christmas.conf /home/w0ryn/.wryn/config/colorschemes/kitty/purple.conf

10
env/env.zsh vendored
View File

@ -76,13 +76,3 @@ zstyle ':fzf-tab:*' fzf-bindings 'space:accept' ';:toggle'
zstyle ':fzf-tab:*' continuous-trigger '/' zstyle ':fzf-tab:*' continuous-trigger '/'
export ZSH_COLOR_UTIL="$DOTWRYN/zsh/utils/color/color.module.zsh" export ZSH_COLOR_UTIL="$DOTWRYN/zsh/utils/color/color.module.zsh"
#CODE_ACTIVATOR__DIRS=()
CODE_ACTIVATOR__KNOWN_TARGETS=(
'git@github.com:w0ryn/'
'git@bitbucket.org:wrynoftheranch/'
'git@git.wryn.cloud:yage/'
'git@git.wryn.cloud:gizmos/'
'git@git.wryn.cloud:usu-coursework/'
'https://wryn.cloud/'
)

View File

@ -2,6 +2,7 @@ function SETUP__CONFIG() {
############################################################################################ ############################################################################################
# Friendly Name ~/.config/THE_REST .wryn/config/THE_REST (if different) # Friendly Name ~/.config/THE_REST .wryn/config/THE_REST (if different)
CONFIG__SYMLINK 'compton' 'compton/compton.conf' CONFIG__SYMLINK 'compton' 'compton/compton.conf'
CONFIG__SYMLINK 'codeactivator' 'code-activator-zsh/settings.zsh'
CONFIG__SYMLINK 'i3 config' 'i3/config' CONFIG__SYMLINK 'i3 config' 'i3/config'
CONFIG__SYMLINK 'i3 status' 'i3status/config' CONFIG__SYMLINK 'i3 status' 'i3status/config'
CONFIG__SYMLINK 'kitty config' 'kitty/kitty.conf' CONFIG__SYMLINK 'kitty config' 'kitty/kitty.conf'

View File

@ -10,6 +10,7 @@ source $WRYNVIMPATH/formatting.vim
source $WRYNVIMPATH/abbreviations.vim source $WRYNVIMPATH/abbreviations.vim
source $WRYNVIMPATH/navigation.vim source $WRYNVIMPATH/navigation.vim
source $WRYNVIMPATH/color.vim source $WRYNVIMPATH/color.vim
source $WRYNVIMPATH/utility.vim
" -- Bindings --------------------------------------------------- {{{ " -- Bindings --------------------------------------------------- {{{

5
vim/utility.vim Normal file
View File

@ -0,0 +1,5 @@
function Sudowrite()
execute 'w !sudo tee "%"'
endfunction
nnoremap <Leader><Leader>w :call Sudowrite()<CR><CR>L