Last active
January 11, 2017 20:58
-
-
Save jakubtuchol/132023ebd69eafe3b88de8926147f724 to your computer and use it in GitHub Desktop.
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
| " editing | |
| set expandtab | |
| set autoindent | |
| set smartindent | |
| set cindent | |
| set tabstop=4 | |
| set softtabstop=4 | |
| set shiftwidth=4 | |
| filetype plugin on | |
| syntax on | |
| " enabling filetype indentation | |
| filetype indent on | |
| let mapleader = "," | |
| " insert newline without entering insert mode | |
| nmap <S-Enter> O<Esc>j | |
| nmap <CR> o<Esc>k | |
| " adding pathogen | |
| execute pathogen#infect() | |
| " adding NERDTree execution | |
| " map <C-n> :NERDTreeToggle<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment