Skip to content

Commit 09987fe

Browse files
committed
vim: no conceal, zsh note fc -RI, git: defaultRemote
1 parent 58579eb commit 09987fe

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

gitconfig

+2
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,5 @@
4343
[mergetool "meld"]
4444
cmd = meld "$LOCAL" "$MERGED" "$REMOTE" --output "$MERGED"
4545

46+
[checkout]
47+
defaultRemote = origin

vimrc

+2
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
119119

120120
" vimtex default flavor, rather than default plain
121121
let g:tex_flavor = 'latex'
122+
" please don't conceal things!
123+
let g:vimtex_syntax_conceal_default = 0
122124

123125
" Vimwiki include pgn files with {{pgn:path/to.pgn}}
124126
function! VimwikiWikiIncludeHandler(value)

zsh-common.zsh

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export HISTFILE="$HOME/.zsh_history"
77
export HISTSIZE=9999999
88
export SAVEHIST=$HISTSIZE
99

10+
# manually import history with `fc -RI`
1011
unsetopt SHARE_HISTORY
1112
setopt INC_APPEND_HISTORY
1213
setopt HIST_FIND_NO_DUPS

0 commit comments

Comments
 (0)