Skip to content

Commit

Permalink
instructions for installing plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
luthes committed Aug 23, 2017
1 parent a356e58 commit ccfef85
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

#Work Aliases
alias overrides='ansible-playbook -i /Users/luths010/temp_overrides/inventory /Users/luths010/temp_overrides/mpr_overrides.yml -vv'

# If not running interactively, don't do anything
case $- in
*i*) ;;
Expand Down Expand Up @@ -63,6 +66,9 @@ else
fi
unset color_prompt force_color_prompt

# Ansible Fancy Output
export ANSIBLE_STDOUT_CALLBACK=debug

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
Expand Down
8 changes: 6 additions & 2 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ set nocompatible " be iMproved, required
filetype off " required

" To install Vundle on a new machine:
"
" git clone https://github.com/VundleVim/Vundle.vim.git
" ~/.vim/vundle/Vundle.vim
"
" To install new plugins, add the Plugin line below,
" then run:
" :source %
" :PluginInstall
"
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Expand Down Expand Up @@ -40,7 +44,7 @@ set colorcolumn=80
if $TERM == "xterm-256color"
set t_Co=256
endif
colorscheme desert
" colorscheme desert
set ruler
set number
highlight LineNr ctermfg=46
Expand Down

0 comments on commit ccfef85

Please sign in to comment.