guest@dotshare [~/groups/vim/rc] $ ls Some-vim-config/ | cat

Some vim config (raw, dl)

tilda Aug 27, 2017 (vim/rc)
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
" tilda's dots
" Made on Jul 31st, 2017 and improved ever since.

" Begin init
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#rc()
" |
" v Put plugins down there
Plugin 'VundleVim/Vundle.vim'
Plugin 'wakatime/vim-wakatime'
Plugin 'rakr/vim-one'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'tpope/vim-sensible'
Plugin 'tpope/vim-fugitive'

" Don't put any down here though.

call vundle#end()
filetype plugin indent on
colorscheme one-dark
" vim-airline config
let g:airline_theme='onedark'
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1
" Alt-<arrow> shortcuts
nmap <silent> <A-Up> :wincmd k<CR>
nmap <silent> <A-Down> :wincmd j<CR>
nmap <silent> <A-Left> :wincmd h<CR>
nmap <silent> <A-Right> :wincmd l<CR>

CLICK TO VIEW

x

Notes

This is my vim config. You may wish to get occasional updates at https://github.com/tilda/dots
Requires vundle, powerline, and best used with neovim/nvim