Updated various configs
This commit is contained in:
parent
d965caab1e
commit
09039177aa
5 changed files with 20 additions and 13 deletions
|
@ -1,17 +1,18 @@
|
|||
function! myspacevim#before() abort
|
||||
set clipboard=unnamedplus
|
||||
#inoremap <C-a> <Home>
|
||||
#inoremap <C-e> <End>
|
||||
"inoremap <C-a> <Home>
|
||||
"inoremap <C-e> <End>
|
||||
|
||||
#call SpaceVim#custom#SPCGroupName(['b'], '+MyCustom')
|
||||
#call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1)
|
||||
#call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1)
|
||||
"call SpaceVim#custom#SPCGroupName(['b'], '+MyCustom')
|
||||
"call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1)
|
||||
"call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1)
|
||||
endfunction
|
||||
|
||||
function! myspacevim#after() abort
|
||||
set clipboard=unnamedplus
|
||||
#inoremap <C-a> <Home>
|
||||
#inoremap <C-e> <End>
|
||||
call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1)
|
||||
call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1)
|
||||
"set clipboard=unnamedplus
|
||||
"inoremap <C-a> <Home>
|
||||
"inoremap <C-e> <End>
|
||||
call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 'sbprevious', 1)
|
||||
call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 'sbnext', 1)
|
||||
endfunction
|
||||
|
||||
|
|
|
@ -104,6 +104,6 @@
|
|||
[[layers]]
|
||||
name = 'lang#vim'
|
||||
|
||||
[[custom_plugins]]
|
||||
name = "saltstack/salt-vim"
|
||||
#[[custom_plugins]]
|
||||
#name = "saltstack/salt-vim"
|
||||
|
||||
|
|
|
@ -91,3 +91,6 @@ CMD quote WHOIS %2 %2
|
|||
NAME SLAP
|
||||
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.
|
||||
|
||||
|
|
|
@ -14,6 +14,8 @@ session-switch-to-terminal-down='disabled'
|
|||
session-switch-to-terminal-left='disabled'
|
||||
session-switch-to-terminal-right='disabled'
|
||||
session-switch-to-terminal-up='disabled'
|
||||
terminal-copy='<Alt>c'
|
||||
terminal-paste='<Alt>v'
|
||||
|
||||
[com/gexperts/Tilix/profiles]
|
||||
list=['2b7c4080-0ddd-46c5-8f23-563fd3ba789d', '8b7f94c7-649c-41d6-adc7-7123a631e58e']
|
||||
|
|
3
.zshrc
3
.zshrc
|
@ -122,13 +122,14 @@ bindkey -M vicmd 'k' history-substring-search-up
|
|||
bindkey -M vicmd 'j' history-substring-search-down
|
||||
# }}} End configuration added by Zim install
|
||||
|
||||
# Homebrew
|
||||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||
|
||||
# Set Path:
|
||||
typeset -U PATH
|
||||
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
|
||||
export PATH
|
||||
|
||||
|
||||
# Portable alternative to readlink -f
|
||||
zpath() { cd -P . || return
|
||||
_out() { printf "%s$_zdlm\n" "$PWD/${1##*/}"; }
|
||||
|
|
Loading…
Reference in a new issue