Last active
September 16, 2018 19:20
-
-
Save rachidify/db3704a8c3d86a5941b3577d46256bdd to your computer and use it in GitHub Desktop.
.vimrc
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 nu | |
syntax enable | |
set background=dark | |
set termguicolors | |
set shiftwidth=2 | |
set expandtab | |
set tabstop=2 | |
set nobackup | |
set nowritebackup | |
set noswapfile | |
call plug#begin('~/.vim/plugged') | |
Plug 'tyrannicaltoucan/vim-quantum' | |
Plug 'vim-airline/vim-airline' | |
Plug 'kristijanhusak/vim-hybrid-material' | |
Plug 'sonph/onehalf', {'rtp': 'vim/'} | |
call plug#end() | |
"set t_Co=256 | |
"set cursorline | |
"colorscheme onehalfdark | |
"let g:airline_theme='onehalfdark' | |
" lightline | |
" let g:lightline.colorscheme='onehalfdark' | |
autocmd InsertEnter * :set number | |
autocmd InsertLeave * :set relativenumber |
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 nu | |
syntax enable | |
set shiftwidth=2 | |
set expandtab | |
set tabstop=2 | |
set nobackup | |
set nowritebackup | |
set noswapfile | |
autocmd InsertEnter * :set number | |
autocmd InsertLeave * :set relativenumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment