Created
July 19, 2019 12:40
-
-
Save dartov/57deeaeaff4b4e105b7f33137d7c2c73 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
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'pearofducks/ansible-vim' | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'edkolev/tmuxline.vim' | |
Plug 'tmux-plugins/vim-tmux' | |
Plug 'tpope/vim-fugitive' | |
call plug#end() | |
syntax enable | |
set background=light | |
colorscheme solarized | |
set number | |
set linebreak | |
set showbreak=+++ | |
set textwidth=100 | |
set showmatch | |
set visualbell | |
set hlsearch | |
set smartcase | |
set ignorecase | |
set incsearch | |
set autoindent | |
set expandtab | |
set shiftwidth=4 | |
set smartindent | |
set smarttab | |
set softtabstop=4 | |
set ruler | |
set undolevels=1000 | |
set backspace=indent,eol,start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment