Skip to content

Commit

Permalink
applied stash
Browse files Browse the repository at this point in the history
  • Loading branch information
g-erson committed Sep 29, 2018
1 parent 29a6f34 commit 4e4e8d0
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 39 deletions.
1 change: 0 additions & 1 deletion .config/oni/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ exports.configuration = {
"language.vue.languageServer.command":"vls",
"experimental.indentLines.enabled": true,
"oni.useDefaultConfig": true,
"tab.mode" : "tabs",
"oni.bookmarks": ["~/Documents"],
"editor.textMateHighlighting.enabled" : true,
"editor.fontSize": "15px",
Expand Down
2 changes: 1 addition & 1 deletion .oh-my-zsh
Submodule .oh-my-zsh updated from 315eb7 to f88396
2 changes: 0 additions & 2 deletions .tmux.conf.local
Original file line number Diff line number Diff line change
Expand Up @@ -273,5 +273,3 @@ bind -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U"
bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R"
bind -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l"

run-shell ~/.tmux/resurrect/resurrect.tmux

2 changes: 1 addition & 1 deletion .vim/bundle/Vundle.vim
Submodule Vundle.vim updated from fef1c2 to 9a3821
2 changes: 1 addition & 1 deletion .vim/bundle/YouCompleteMe
Submodule YouCompleteMe updated from e49f81 to 487b8a
2 changes: 1 addition & 1 deletion .vim/bundle/nerdtree
Submodule nerdtree updated from 15d06b to 808f5b
2 changes: 1 addition & 1 deletion .vim/init.vim
42 changes: 18 additions & 24 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,28 @@ Plugin 'gmarik/vundle'
" Keep bundle commands between here and filetype plugin indent on.
" scripts on GitHub repos
if exists('g:gui_oni')
set noshowmode
set noruler
set laststatus=0
set noshowcmd
set noshowmode
set noruler
set laststatus=0
set noshowcmd
else
" Statements here
Plugin 'Valloric/YouCompleteMe' "This is just the client. Install server
"with ./<plugin location>/install.sh
" --clang-completer
"
Plugin 'jistr/vim-nerdtree-tabs'
"Configure ctrlp
"" Ignore some folders and files for CtrlP indexing
let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|\.yardoc\|node_modules\|vendor\|log\|tmp$',
\ 'file': '\.so$\|\.dat$|\.DS_Store$'
\ }
set runtimepath^=~/.vim/bundle/ctrlp.vim
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'ctrlpvim/ctrlp.vim'
" Statements here
Plugin 'Valloric/YouCompleteMe' "This is just the client. Install server
"with ./<plugin location>/install.sh
" --clang-completer
"
Plugin 'jistr/vim-nerdtree-tabs'
"Configure ctrlp
set runtimepath^=~/.vim/bundle/ctrlp.vim
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'ctrlpvim/ctrlp.vim'
endif

Plugin 'ap/vim-css-color'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-fireplace'
Plugin 'tpope/vim-rails'
Plugin 'tpope/vim-surround'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/nerdtree'
Plugin 'airblade/vim-gitgutter'
Expand Down Expand Up @@ -99,9 +93,9 @@ if _curfile =~ "Makefile" || _curfile =~ "makefile" || _curfile =~ ".*\.mk"
set noexpandtab
else
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=2
set tabstop=4
set shiftwidth=4
set softtabstop=4
endif

"===================== Reselect visual block after indent/outdent ===========
Expand Down
17 changes: 10 additions & 7 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -92,18 +92,27 @@ plugins=(

source $ZSH/oh-my-zsh.sh

fpath+=('/usr/local/lib/node_modules/pure-prompt/functions')
fpath+=('/home/george/.npm-global/lib/node_modules/pure-prompt/functions')

autoload -U promptinit; promptinit
prompt pure

compinit

export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
export ANDROID_HOME="$HOME/Android/Sdk"
export PATH="$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$PATH"
export PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH="$HOME/.npm-global/bin/:$PATH"
export PATH="$HOME/.local/kitty.app/bin:$PATH"

# Completion for kitty
#kitty + complete setup zsh | source /dev/stdin

# User configuration

bindkey "^P" up-line-or-search
bindkey jk vi-cmd-mode
setopt NO_NOMATCH

export PATH=$HOME/Android/Sdk/tools/bin:$PATH
Expand Down Expand Up @@ -136,16 +145,10 @@ export PATH=$HOME/android-studio/bin:$PATH
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias dc="docker-compose"
alias d="docker"
alias psc="psc-package"

###-tns-completion-start-###
if [ -f /home/george/.tnsrc ]; then
source /home/george/.tnsrc
fi

export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
export ANDROID_HOME="$HOME/Android/Sdk"
export PATH="$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$PATH"
export PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH="$HOME/.npm-global/bin/:$PATH"
###-tns-completion-end-###

0 comments on commit 4e4e8d0

Please sign in to comment.