From a049e924ca3901a0cab20f31193d68346c85bbd5 Mon Sep 17 00:00:00 2001 From: dummy Date: Sun, 6 Jan 2019 22:47:04 -0500 Subject: [PATCH] add new vim-markdown plugin to vimrc --- .bashrc | 2 +- .gdbinit.d/gdbdashbard.conf | 1 + .vimrc | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index d23f785..fccfb33 100644 --- a/.bashrc +++ b/.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 diff --git a/.gdbinit.d/gdbdashbard.conf b/.gdbinit.d/gdbdashbard.conf index e70e8f8..f707736 100644 --- a/.gdbinit.d/gdbdashbard.conf +++ b/.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 diff --git a/.vimrc b/.vimrc index 7007d27..dcdfbb9 100644 --- a/.vimrc +++ b/.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