Skip to content

Commit

Permalink
Include kind and arkade, drop golangci-lint and shift to staticcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
karlmutch committed Jan 12, 2021
1 parent 55f4ca3 commit a198d50
Show file tree
Hide file tree
Showing 28 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion diff-so-fancy
Submodule diff-so-fancy updated 1 files
+5 −5 README.md
2 changes: 1 addition & 1 deletion oh-my-zsh
Submodule oh-my-zsh updated from d05544 to fae34b
2 changes: 1 addition & 1 deletion tmux/plugins/tmux-battery
2 changes: 1 addition & 1 deletion vim/bundle/ctrlp.vim
Submodule ctrlp.vim updated 1 files
+1 −1 autoload/ctrlp.vim
2 changes: 1 addition & 1 deletion vim/bundle/nerdtree
2 changes: 1 addition & 1 deletion vim/bundle/nerdtree-git-plugin
2 changes: 1 addition & 1 deletion vim/bundle/syntastic
2 changes: 1 addition & 1 deletion vim/bundle/tagbar
2 changes: 1 addition & 1 deletion vim/bundle/unicode.vim
2 changes: 1 addition & 1 deletion vim/bundle/unite
2 changes: 1 addition & 1 deletion vim/bundle/vim-airline
2 changes: 1 addition & 1 deletion vim/bundle/vim-devicons
2 changes: 1 addition & 1 deletion vim/bundle/vim-easymotion
2 changes: 1 addition & 1 deletion vim/bundle/vim-fugitive
2 changes: 1 addition & 1 deletion vim/bundle/vim-instant-markdown
2 changes: 1 addition & 1 deletion vim/bundle/vim-tmux-navigator
Submodule vim-tmux-navigator updated 1 files
+1 −1 README.md
10 changes: 5 additions & 5 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,11 @@ set statusline+=%*

"let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck']
let g:syntastic_mode_map = { 'mode': 'active', 'active_filetypes': ['go'] }
let g:syntastic_go_golangci_lint_args = '' .
\ '--enable-all ' .
\ '--build-tags NO_CUDA ' .
\ '--fast '
let g:syntastic_go_checkers = ['golangci-lint']
"let g:syntastic_go_golangci_lint_args = '' .
" \ '--enable-all ' .
" \ '--build-tags NO_CUDA ' .
" \ '--fast '
"let g:syntastic_go_checkers = ['golangci-lint']

"let g:syntastic_c_include_dirs = ['/home/kmutch/darkcycle-sdk/cpp']
"let g:syntastic_c_check_header = 1
Expand Down
2 changes: 1 addition & 1 deletion zsh-completions
Submodule zsh-completions updated 4 files
+179 −157 src/_cmake
+83 −0 src/_mssh
+3 −1 src/_openssl
+61 −22 src/_stack
2 changes: 1 addition & 1 deletion zsh.rc/80-istio
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export ISTIO_DIR=~/istio-1.4.2
export ISTIO_DIR=~/istio-1.8.1
export PATH=$PATH:$ISTIO_DIR/bin
4 changes: 2 additions & 2 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ POWERLEVEL9K_DIR_HOME_SUBFOLDER_FOREGROUND='010'
POWERLEVEL9K_COMMAND_EXECUTION_TIME_BACKGROUND='245'
POWERLEVEL9K_COMMAND_EXECUTION_TIME_FOREGROUND='black'

typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens|kubectx|oc|istioctl|kogito|k9s|helmfile'
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens|kubectx|oc|istioctl|kogito|k9s|helmfile|kind'

#POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR=$''
#
Expand Down Expand Up @@ -158,7 +158,7 @@ export SNAP=/snap
export PATH="$SNAP/bin:$HOME/.cargo/bin:$HOME/upspin/bin:$HOME/bin:/usr/local/bin":$PATH:"/usr/bin:/usr/local/sbin:/usr/sbin":$HOME/.local/bin
export MANPATH="/usr/local/man:$MANPATH:$HOME/man"

export PATH="$HOME/.pyenv/bin:${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
export PATH="$HOME/.arkade/bin/:$HOME/.pyenv/bin:${KREW_ROOT:-$HOME/.krew}/bin:$PATH"

rehash

Expand Down

0 comments on commit a198d50

Please sign in to comment.