diff options
-rw-r--r-- | .vimrc | 3 | ||||
-rw-r--r-- | .zshrc | 6 |
2 files changed, 3 insertions, 6 deletions
@@ -23,6 +23,9 @@ if has("gui_running") endif endif +if has("macunix") +endif + " Identation set autoindent @@ -9,9 +9,6 @@ SAVEHIST=1000 HISTFILE=~/.zsh_history export EDITOR=/usr/bin/vim -[ -f /usr/local/bin/mvim ] && \ - export EDITOR='/usr/local/bin/mvim -v' \ - alias vim='mvim -v' # file [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh @@ -27,9 +24,6 @@ export no_proxy=localhost,127.0.0.1 case `uname` in Darwin) # commands for macOS - export PATH="/usr/local/opt/openjdk/bin:$PATH" - export CPPFLAGS="-I/usr/local/opt/openjdk/include" - [ -d $HOME/.gem ] && export GEM_HOME="$HOME/.gem" ;; Linux) # commands for Linux |