Created
May 25, 2020 03:29
-
-
Save airicbear/83d9c0832b7931fc587f285259c52770 to your computer and use it in GitHub Desktop.
Example Vim config using pathogen
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
set runtimepath+=~/.vim/ | |
source ~/.vim/after/ftplugin/python.vim | |
execute pathogen#infect() | |
syntax on | |
filetype plugin on | |
filetype indent on | |
set number | |
set relativenumber | |
set softtabstop=2 | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment