diff options
author | xero harrison <x@xero.nu> | 2016-11-07 10:43:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 10:43:52 -0500 |
commit | 466f4627003a6b264f48512066c9e40eb790a8f8 (patch) | |
tree | 2cfd6147cc5d6ae9ebae9a3fcce118186d5adf99 /vim/.vim | |
parent | 7adb769b10e5f80d9ae8502c79e66ea85d98cacf (diff) | |
download | dotfiles_ascii-466f4627003a6b264f48512066c9e40eb790a8f8.tar.xz dotfiles_ascii-466f4627003a6b264f48512066c9e40eb790a8f8.zip |
update .vimrc
Diffstat (limited to '')
-rw-r--r-- | vim/.vimrc | 21 |
1 files changed, 18 insertions, 3 deletions
@@ -102,6 +102,15 @@ command Spell :setlocal spell! spell? " make current buffer executable command Chmodx :!chmod a+x % +" let's make some textmode art! +function! AsciiMode() + "e ++enc=cp850 + set nu! + set virtualedit=all + set colorcolumn=80 +endfunction +command Ascii :call AsciiMode() + " ╻┏┓╻╺┳╸┏━╸┏━┓┏━╸┏━┓┏━╸┏━╸ " ┃┃┗┫ ┃ ┣╸ ┣┳┛┣╸ ┣━┫┃ ┣╸ " ╹╹ ╹ ╹ ┗━╸╹┗╸╹ ╹ ╹┗━╸┗━╸ @@ -150,7 +159,7 @@ set listchars+=nbsp:⣿ " ╹ ┗━╸┗━┛┗━┛╹╹ ╹ ┗━┛ ╹ ┗━┛╹ ╹ " i struggle with the decision to use plugins or a more vanilla vim, don't judge me. " to install from the shell run: -" git clone https://github.com/gmarik/Vundle.vim.git ~/dotfiles/vim/.vim/bundle/Vundle.vim && vim +BundleInstall +qall && pacman -S the_silver_searcher +" git clone https://github.com/gmarik/Vundle.vim.git ~/dotfiles/vim/.vim/bundle/Vundle.vim vim +BundleInstall +qall && pacman -S the_silver_searcher set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'gmarik/Vundle.vim' @@ -167,8 +176,11 @@ Plugin 'rking/ag.vim' Plugin 'isa/vim-matchit' Plugin 'chrisbra/unicode.vim' Plugin 'lilydjwg/colorizer' +Plugin 'othree/html5.vim' Plugin 'itchyny/lightline.vim' +Plugin 'gabrielelana/vim-markdown' Plugin 'xero/sourcerer.vim' +Plugin 'xero/blaquemagick.vim' call vundle#end() filetype plugin indent on @@ -223,8 +235,11 @@ let g:ag_highlight=1 " map \ to the ag command for quick searching nnoremap \ :Ag<SPACE> -" wizard colors http://git.io/vim.sourcerer -colorscheme blaquemagick +" wizard colors https://git.io/vim.sourcerer +colorscheme sourcerer + +" dark wizard colors http://git.io/blaquemagick.vim +"colorscheme blaquemagick " ┏━┓╺┳╸┏━┓╺┳╸╻ ╻┏━┓╻ ╻┏┓╻┏━╸ " ┗━┓ ┃ ┣━┫ ┃ ┃ ┃┗━┓┃ ┃┃┗┫┣╸ |