diff --git a/etc/php/7.4/conf.d/imagick.ini b/etc/php/7.4/conf.d/imagick.ini index e3439fa2..53ca7ab4 100644 --- a/etc/php/7.4/conf.d/imagick.ini +++ b/etc/php/7.4/conf.d/imagick.ini @@ -1 +1 @@ -extension="/usr/local/Cellar/php@7.4/7.4.20/pecl/20190902/imagick.so" +#extension="/usr/local/lib/php/pecl/20190902/imagick.so" diff --git a/gitconfig b/gitconfig index 9992cf14..c1953841 100644 --- a/gitconfig +++ b/gitconfig @@ -40,6 +40,7 @@ st = status cm = commit co = checkout + cp = cherry-pick br = branch -a ps = push pl = pull diff --git a/nvim/keymappings.vim b/nvim/keymappings.vim index 1d1bcf7d..181a9605 100644 --- a/nvim/keymappings.vim +++ b/nvim/keymappings.vim @@ -18,10 +18,16 @@ nnoremap Y y$ " auto-yanking with clipper for selected yanking, see leader-y mapping vnoremap y y :call system('nc localhost 8377', @0) -" Search mappings: These will make it so that going to the next one in a -" search will center on the line it's found in. -nnoremap N Nzz -nnoremap n nzz +" Keeping it centered +nnoremap N Nzzzv +nnoremap n nzzzv +nnoremap J mzJ`z + +" und breakpoints when writing long text/code +inoremap , ,u +inoremap . .u +inoremap ! !u +inoremap ? ?u " use the arrowkeys for usefull stuff in normal mode -- switching buffers nnoremap :bfirst @@ -32,12 +38,12 @@ nnoremap :bn " Bubble/indent lines using unimpaired " using left alt + hjkl on mac usgerman keyboard " those are some weird mappings, but they work! -nmap ˚ [e -nmap ∆ ]e +nmap ˚ :m .-2== +nmap ∆ :m .+1== nmap ˙ << nmap ¬ >> -vmap ˚ [egv -vmap ∆ ]egv +vmap ∆ :m '>+1gv=gv +vmap ˚ :m '<-2gv=gv vmap ˙ gv