"" vim:ft=vim set nocompatible set number set title set ttyfast set ruler " Tabbing (mainly) set tabstop=5 set shiftwidth=5 set shiftround set autoindent set smartindent autocmd FileType c,cpp set cindent comments=sr:/*,mb:*,ex:*/,:// inoremap # X# set list set listchars=tab:»·,trail:·,extends:…,precedes:…,nbsp:␠ set formatoptions=coqrt " Folding set foldmethod=marker " Colors set bg=dark colorscheme mine syntax enable set t_Co=256 " Swapfiles set backupdir=~/.vim-backup set dir=~/.vim-backup " Searching set smartcase set ignorecase set hlsearch set incsearch set redrawtime=500 " Greedy remaps (TODO: Add more keys) noremap - : noremap r h noremap n j noremap t k noremap h l noremap R H noremap N J noremap T K noremap H L noremap c n noremap f p