Merge branch 'master' of git.linux-help.org:psi-jack/my-yadm

This commit is contained in:
Eric Renfro 2022-06-13 15:01:23 -04:00
commit 38a2f2e146
8 changed files with 41 additions and 1 deletions

View File

@ -1,5 +1,22 @@
function! myspacevim#before() abort
set clipboard=unnamedplus
<<<<<<< HEAD
#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)
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)
endfunction
=======
"inoremap <C-a> <Home>
"inoremap <C-e> <End>
@ -16,3 +33,4 @@ function! myspacevim#after() abort
call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 'sbnext', 1)
endfunction
>>>>>>> beb612e4b5104113b2edd4e269cfa058a59a3bec

View File

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

View File

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

View File

@ -1 +0,0 @@
gnome##os.Linux

View File

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

View File

@ -18,3 +18,6 @@
up = !git pull --prune $@ && git submodule update --init --recursive
[credential]
helper = osxkeychain
[pull]
rebase = false
ff = no

View File

@ -0,0 +1,2 @@
export ITERM_ENABLE_SHELL_INTEGRATION_WITH_TMUX=YES

7
.zshrc
View File

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