File tree Expand file tree Collapse file tree 4 files changed +53
-9
lines changed Expand file tree Collapse file tree 4 files changed +53
-9
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ let g:rehash256 = 1
149
149
150
150
" Set colors
151
151
set background = dark
152
- colorscheme gruvbox
152
+ colorscheme onedark
153
153
154
154
" Add a more detailed theme for airline
155
155
let g: airline_theme = ' tomorrow'
@@ -192,6 +192,8 @@ let g:go_fmt_command = "goimports"
192
192
" Play nice with YCM
193
193
" let g:UltiSnipsJumpForwardTrigger="<tab>"
194
194
" let g:UltiSnipsListSnippets="<c-e>"
195
+ "
196
+ let g: ycm_server_python_interpreter = ' /usr/local/bin/python'
195
197
196
198
" Use AG
197
199
let g: ackprg = ' ag --nogroup --nocolor --column'
@@ -233,11 +235,18 @@ let g:is_bash=1
233
235
" Vitality
234
236
let g: always_assume_iterm = 0
235
237
238
+ let g: ale_linters = {
239
+ \ ' javascript' : [' standard' ],
240
+ \}
241
+
242
+ let g: ale_sign_column_always = 1
243
+ let g: airline #extensions#ale#enabled = 1
244
+
236
245
" Enable syntastic syntax checking
237
- let g: syntastic_enable_signs = 1
246
+ " let g:syntastic_enable_signs = 1
238
247
239
248
" Turn off jslint errors by default
240
- let g: JSLintHighlightErrorLine = 0
249
+ " let g:JSLintHighlightErrorLine = 0
241
250
242
251
" Stop netrw
243
252
let g: netrw_silent = 1
Original file line number Diff line number Diff line change @@ -8,9 +8,11 @@ Plugin 'kien/ctrlp.vim'
8
8
Plugin 'bling/vim-airline.git'
9
9
Plugin 'mileszs/ack.vim'
10
10
Plugin 'Raimondi/delimitMate'
11
- Plugin 'pangloss/vim-javascript'
11
+ " Plugin 'pangloss/vim-javascript'
12
+ Plugin 'isRuslan/vim-es6'
12
13
Plugin 'tpope/vim-commentary'
13
- Plugin 'scrooloose/syntastic'
14
+ " Plugin 'scrooloose/syntastic'
15
+ Plugin 'w0rp/ale'
14
16
Plugin 'tpope/vim-fugitive'
15
17
Plugin 'godlygeek/tabular'
16
18
Plugin 'tpope/vim-surround'
@@ -33,3 +35,5 @@ Plugin 'tpope/vim-sleuth'
33
35
Plugin 'morhetz/gruvbox'
34
36
Plugin 'mattn/emmet-vim'
35
37
Plugin 'airblade/vim-gitgutter'
38
+ Plugin 'joshdick/onedark.vim'
39
+ Plugin 'posva/vim-vue'
Original file line number Diff line number Diff line change 1
-
2
1
# path to oh-my-zsh installation
3
2
export ZSH=~ /.oh-my-zsh
4
3
5
4
# set name of the theme to load
6
5
ZSH_THEME=" powerlevel9k/powerlevel9k"
7
6
7
+ # Power Level 9K settings
8
+ # https://github.com/bhilburn/powerlevel9k#available-prompt-segments
9
+ POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir)
10
+ POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status vcs virtualenv)
11
+
8
12
# command auto-correction
9
13
ENABLE_CORRECTION=" true"
10
14
11
15
# plugins
12
16
# https://github.com/robbyrussell/oh-my-zsh/wiki/plugins
13
- plugins=(brew git jsontools pip python sudo)
17
+ plugins=(brew git jsontools pip python sudo virtualenv )
14
18
15
19
# user path
16
20
export PATH=" /usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin"
@@ -29,4 +33,14 @@ alias vrcb='vim ~/.vimrc.bundles'
29
33
alias vrcbl=' vim ~/.vimrc.bundles.local'
30
34
31
35
# get aliases and stuff from local
32
- source ~ /.zshrc.local
36
+ source ~ /.zshrc.local
37
+
38
+ # export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
39
+
40
+ # android sdk
41
+ export ANDROID_HOME=/Users/nick/Library/Android/sdk
42
+ export PATH=${PATH} :$ANDROID_HOME /tools:$ANDROID_HOME /platform-tools
43
+
44
+ [[ -s " $HOME /.rvm/scripts/rvm" ]] && . " $HOME /.rvm/scripts/rvm"
45
+
46
+ unsetopt correct_all
Original file line number Diff line number Diff line change
1
+ # plutus project
2
+ alias plutus_run='cd ~/Sites/plutus/; source env/bin/activate; python run.py'
1
3
2
- " Put your local zsh settings here
4
+ alias chrome_nocors='open -a Google\ Chrome --args --disable-web-security'
5
+
6
+ alias pluterrlog='tail -f ~/Sites/plutus/logs/apache_error.log'
7
+ alias plutacclog='tail -f ~/Sites/plutus/logs/apache_access.log'
8
+ alias plutdeflog='tail -f ~/Sites/plutus/logs/default.log'
9
+
10
+ alias plutus_db_drop='~/sites/plutus; mongo baseclass --eval "db.dropDatabase()"'
11
+ alias plutus_db_restore='~/sites/plutus; mongorestore --dir dump/db/baseclass --db baseclass'
12
+
13
+ alias plutus_build='r.js -o static/js/build.js'
14
+
15
+ alias arestart='sudo apachectl restart'
16
+
17
+ alias cdp='cd ~/sites/plutus'
18
+
19
+ source ~/.iterm2_shell_integration.zsh
You can’t perform that action at this time.
0 commit comments