Skip to content

Commit

Permalink
update ctrlp, add color to ls, add cb enterprise gh url
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Bird committed Nov 29, 2018
1 parent 52b62a1 commit 0703c39
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .config/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Plug 'tpope/vim-rails'
Plug 'tpope/vim-cucumber'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'kien/ctrlp.vim'
Plug 'ctrlpvim/ctrlp.vim'
"Plug 'slim-template/vim-slim'
"Plug 'kchmck/vim-coffee-script'
Plug 'thoughtbot/vim-rspec'
Expand Down Expand Up @@ -468,3 +468,5 @@ function! PutsDate()
endfunction

command! Date call PutsDate()

let g:github_enterprise_urls = ['https://github.cbhq.net']
6 changes: 3 additions & 3 deletions .davinci/sh/2-aliases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ alias gds='gd --stat'
#alias gp='git push -u'
alias ag='ag --hidden --smart-case'
#alias ctags-rb='ctags -R --languages=ruby --exclude=.git --exclude=log .'
alias ls='ls -F'
alias ls='ls -F --color=auto'
alias l='ls'
alias l1='\ls -1'
alias ll='\ls -Fltrh'
alias la='\ls -FltrhA'
alias ll='\ls -Fltrh --color=auto'
alias la='\ls -FltrhA --color=auto'
alias grep='grep --color=auto'
alias less='less -R'
alias banner='figlet -f graffiti'
Expand Down
12 changes: 8 additions & 4 deletions .pryrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
require 'awesome_print'
begin
require 'awesome_print'

# Allow rails console to setup whether awesome_print gets used
if !defined?(Rails)
AwesomePrint.pry!
# Allow rails console to setup whether awesome_print gets used
if !defined?(Rails)
AwesomePrint.pry!
end
rescue LoadError
# bummer
end

Pry.editor = 'vim'
Expand Down

0 comments on commit 0703c39

Please sign in to comment.