~andrewzah/dotfiles

8b3575b47aed379d29c9620db3a5c268f7d95967 — Andrew Zah 6 years ago 0073d78
Update
3 files changed, 13 insertions(+), 7 deletions(-)

M nvim/after/syntax/clojure.vim
M zsh/aliases.zsh
M zsh/exports.zsh
M nvim/after/syntax/clojure.vim => nvim/after/syntax/clojure.vim +3 -6
@@ 1,13 1,10 @@
" File:         clojure.vim (conceal enhancement)
" Author:       Filip Wolanski <wolanski@gmail.com>
" Maintainer:   Andrew Zah <zah@andrewzah.com>
" Last Change:  2013-03-05
" Version:      1.0.0
" Version:      1.1.0
" Require:
"   set nocompatible
"     somewhere on your .vimrc
"
"   Vim 7.3 or Vim compiled with conceal patch.
"
"   Vim 7.3+ or Vim compiled with conceal patch.

syntax match clojureConcealLambda /\v#\(/me=e-1 conceal cchar=λ
if !has('conceal') || &enc != 'utf-8'

M zsh/aliases.zsh => zsh/aliases.zsh +9 -0
@@ 4,7 4,16 @@ alias exa="exa -l"
# Clojure
alias lr="lein repl"


# https://github.com/holman/dotfiles/blob/b943fe169f372c6ee0057c8ff698e1709719a6ba/git/aliases.zsh
# Git. Remove `+` and `-` from start of diff lines; just rely upon color.
alias gd='git diff --color | sed "s/^\([^-+ ]*\)[-+ ]/\\1/" | less -r'

# https://github.com/holman/dotfiles/blob/b943fe169f372c6ee0057c8ff698e1709719a6ba/docker/aliases.zsh
# Docker
alias d='docker $*'
alias d-c='docker-compose $*'

alias dcu="docker-compose up"
alias dcd="docker-compose down"
alias dcb="docker-compose build"

M zsh/exports.zsh => zsh/exports.zsh +1 -1
@@ 6,7 6,7 @@ export UPDATE_ZSH_DAYS=1
# Custom
########

export TERM=xterm-256color
export TERM=xterm-kitty

export GREP_OPTIONS='--color=auto'
export GREP_COLOR='3;33'