Updated various configs

This commit is contained in:
Eric Renfro 2021-12-30 13:04:21 -05:00
parent d965caab1e
commit 09039177aa
5 changed files with 20 additions and 13 deletions

View File

@ -1,17 +1,18 @@
function! myspacevim#before() abort function! myspacevim#before() abort
set clipboard=unnamedplus set clipboard=unnamedplus
#inoremap <C-a> <Home> "inoremap <C-a> <Home>
#inoremap <C-e> <End> "inoremap <C-e> <End>
#call SpaceVim#custom#SPCGroupName(['b'], '+MyCustom') "call SpaceVim#custom#SPCGroupName(['b'], '+MyCustom')
#call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1) "call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1)
#call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1) "call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1)
endfunction endfunction
function! myspacevim#after() abort function! myspacevim#after() abort
set clipboard=unnamedplus "set clipboard=unnamedplus
#inoremap <C-a> <Home> "inoremap <C-a> <Home>
#inoremap <C-e> <End> "inoremap <C-e> <End>
call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1) call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 'sbprevious', 1)
call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1) call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 'sbnext', 1)
endfunction endfunction

View File

@ -104,6 +104,6 @@
[[layers]] [[layers]]
name = 'lang#vim' name = 'lang#vim'
[[custom_plugins]] #[[custom_plugins]]
name = "saltstack/salt-vim" #name = "saltstack/salt-vim"

View File

@ -91,3 +91,6 @@ CMD quote WHOIS %2 %2
NAME SLAP NAME SLAP
CMD me slaps a trout around a bit with a large %2 CMD me slaps a trout around a bit with a large %2
NAME SHT
CMD msg %c %2: This channel frowns upon and discourages the use of SMS/shtspk like '%3'. See /topic for reference.

View File

@ -14,6 +14,8 @@ session-switch-to-terminal-down='disabled'
session-switch-to-terminal-left='disabled' session-switch-to-terminal-left='disabled'
session-switch-to-terminal-right='disabled' session-switch-to-terminal-right='disabled'
session-switch-to-terminal-up='disabled' session-switch-to-terminal-up='disabled'
terminal-copy='<Alt>c'
terminal-paste='<Alt>v'
[com/gexperts/Tilix/profiles] [com/gexperts/Tilix/profiles]
list=['2b7c4080-0ddd-46c5-8f23-563fd3ba789d', '8b7f94c7-649c-41d6-adc7-7123a631e58e'] list=['2b7c4080-0ddd-46c5-8f23-563fd3ba789d', '8b7f94c7-649c-41d6-adc7-7123a631e58e']

3
.zshrc
View File

@ -122,13 +122,14 @@ bindkey -M vicmd 'k' history-substring-search-up
bindkey -M vicmd 'j' history-substring-search-down bindkey -M vicmd 'j' history-substring-search-down
# }}} End configuration added by Zim install # }}} End configuration added by Zim install
# Homebrew
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
# Set Path: # Set Path:
typeset -U PATH typeset -U PATH
PATH="$HOME/bin:$HOME/.local/bin:$PATH" PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH export PATH
# Portable alternative to readlink -f # Portable alternative to readlink -f
zpath() { cd -P . || return zpath() { cd -P . || return
_out() { printf "%s$_zdlm\n" "$PWD/${1##*/}"; } _out() { printf "%s$_zdlm\n" "$PWD/${1##*/}"; }