Last active
November 13, 2017 22:25
-
-
Save ar-to/529f57a41a6dda7a875b0af97c72e387 to your computer and use it in GitHub Desktop.
This is the config file for setting up VIM as an IDE with Vundle as the plugin manage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""""Ari's Vimrc Config | |
set nocompatible | |
syntax on | |
set encoding=utf8 "defaults to Latin-1 | |
"set nowrap "defaults to wrapping long lines | |
"""" Start Vundle config | |
" Disable file type for vundle | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" let Vundle manage Vundle, required | |
Plugin 'VundleVim/Vundle.vim' | |
" Utility | |
Plugin 'scrooloose/nerdtree' | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" Show linenumbers | |
set number | |
set ruler "shows line, column count on bottom right | |
"Leader | |
let mapleader = ";" | |
"NERDtree | |
map <leader>n :NERDTreeToggle<CR> | |
"move Tabs | |
map <leader>t :tabn <CR> | |
" Dir menu at bottom of vim that shows dirs using :e | :vsplit dir | |
set wildmenu | |
"Color theme added to ~/.vim/colors/ | |
colorscheme smyck | |
set relativenumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment