Browse Source

add new vim-markdown plugin to vimrc

master
dummy 8 years ago
parent
commit
a049e924ca
  1. 2
      .bashrc
  2. 1
      .gdbinit.d/gdbdashbard.conf
  3. 3
      .vimrc

2
.bashrc

@ -13,7 +13,7 @@ PS1="[$GREEN\u$RESET@$RED\h$RESET:$YELLOW\w$RESET]$"
# Some shortcuts for different directory listings
alias ls='ls -hF --color=tty --group-directories-first' # classify files in colour
alias ll='ls -l' # long list
alias grep='grep --color'
alias grep='grep --color=auto'
alias tmux='tmux -2'
# Umask

1
.gdbinit.d/gdbdashbard.conf

@ -4,3 +4,4 @@ dashboard -layout assembly !registers stack memory source expressions !history !
dashboard -style syntax_highlighting 'rrt'
dashboard -style style_low '0;37'
#dashboard source -style context 15
dashboard stack -style arguments False

3
.vimrc

@ -20,6 +20,9 @@ Plugin 'tikhomirov/vim-glsl'
autocmd! BufNewFile,BufRead *.vs,*.fs set ft=glsl
" additional highlighting for c/c++ function names
Plugin 'octol/vim-cpp-enhanced-highlight'
" better vim-markdown plugin
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
" All of your Plugins must be added before the following line
call vundle#end() " required

Loading…
Cancel
Save