diff --git a/vim/configs/vimrc b/vim/configs/vimrc index 3f2229a..e62d7e9 100644 --- a/vim/configs/vimrc +++ b/vim/configs/vimrc @@ -132,10 +132,12 @@ Plugin 'rakr/vim-two-firewatch' " Improved syntax files Plugin 'Glench/Vim-Jinja2-Syntax' Plugin 'fmoralesc/vim-pinpoint' -Plugin 'gorodinskiy/vim-coloresque' Plugin 'kchmck/vim-coffee-script' Plugin 'mattn/emmet-vim' +" Automatically detect and change the display of CSS colors +Plugin 'gorodinskiy/vim-coloresque' + " Project tree " Plugin 'scrooloose/nerdtree' " Plugin 'jistr/vim-nerdtree-tabs' @@ -165,6 +167,9 @@ Plugin 'editorconfig/editorconfig-vim' " Mega-autocomplete " Plugin 'Valloric/YouCompleteMe' +" Selection +Plugin 'terryma/vim-expand-region' + " Clang Formatter Plugin 'rhysd/vim-clang-format' @@ -469,6 +474,11 @@ let g:clang_format#style_options = { \ "SpaceBeforeParens": "ControlStatements", \ "DisableFormat": "false" } +" ---------------------------------------------------------------------- +" Vim Expand Region +" ---------------------------------------------------------------------- +vmap v (expand_region_expand) +vmap (expand_region_shrink) " ---------------------------------------------------------------------- " Lastly, load configurations available only to this computer