all: misc changes from the last few months

This commit is contained in:
2018-05-02 13:49:10 +02:00
parent b635d5de51
commit 8d2b3dbb92
5 changed files with 13 additions and 2 deletions

View File

@@ -15,3 +15,8 @@ JSX
extension jsx extension jsx
3rd_gen_scale 1.48 3rd_gen_scale 1.48
end_of_line_continuation \\$ end_of_line_continuation \\$
Zig
filter remove_matches ^\s*//
extension zig
3rd_gen_scale 1.48
end_of_line_continuation \\$

View File

@@ -128,3 +128,7 @@ save_dotfiles(){
cp ~/.zshrc ${DOTPATH}zshrc cp ~/.zshrc ${DOTPATH}zshrc
} }
if [ -e /Users/veitheller/.nix-profile/etc/profile.d/nix.sh ]; then . /Users/veitheller/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer if [ -e /Users/veitheller/.nix-profile/etc/profile.d/nix.sh ]; then . /Users/veitheller/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"

View File

@@ -64,7 +64,7 @@
untracked = cyan untracked = cyan
[core] [core]
excludesfile = /Users/sidharta/.gitignore excludesfile = /Users/veitheller/.gitignore
whitespace = space-before-tabmtrailing-space whitespace = space-before-tabmtrailing-space
autocrlf = input autocrlf = input
editor = /usr/local/bin/vim editor = /usr/local/bin/vim

2
vimrc
View File

@@ -94,6 +94,7 @@ Bundle 'tikhomirov/vim-glsl'
Plugin 'rust-lang/rust.vim' Plugin 'rust-lang/rust.vim'
Plugin 'kchmck/vim-coffee-script' Plugin 'kchmck/vim-coffee-script'
Plugin 'isRuslan/vim-es6' Plugin 'isRuslan/vim-es6'
Plugin 'zig-lang/zig.vim'
" Custom bundles " Custom bundles
if filereadable(expand("~/.vim.local/bundles.vim")) if filereadable(expand("~/.vim.local/bundles.vim"))
@@ -639,3 +640,4 @@ endif
" }}} " }}}
let g:syntastic_carp_checkers = ['carp'] let g:syntastic_carp_checkers = ['carp']
command Cr !carp -x %

2
zshrc
View File

@@ -24,7 +24,7 @@ export GOPATH=~/.go
export GOBIN=$GOPATH/bin export GOBIN=$GOPATH/bin
export GHC_HOME=/usr/local/bin export GHC_HOME=/usr/local/bin
export CABAL_HOME=$HOME/.cabal/ export CABAL_HOME=$HOME/.cabal/
export PATH=$GHC_HOME:$PATH:$CABAL_HOME/bin:/opt/local/bin:/usr/local/sbin:/usr/local/opt/llvm/bin:~/.local/bin:$GOBIN export PATH=$GHC_HOME:$PATH:$CABAL_HOME/bin:/opt/local/bin:/usr/local/sbin:/usr/local/opt/llvm/bin:~/.local/bin:$GOBIN:~/.cargo/bin
export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/opt/erlang/lib/erlang/man export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/opt/erlang/lib/erlang/man
export INFOPATH=$INFOPATH:/opt/local/share/info export INFOPATH=$INFOPATH:/opt/local/share/info
export PYTHONSTARTUP=~/.pythonrc export PYTHONSTARTUP=~/.pythonrc