Last active
September 5, 2019 01:36
-
-
Save harish-r/be82d4b6f9760b677c1cf3363be5ba1d 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
" Plug plugins installation | |
call plug#begin('~/.vim/plugged') | |
Plug 'dracula/vim', { 'as': 'dracula' } | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
call plug#end() | |
set encoding=utf-8 | |
set laststatus=2 | |
"syntax on | |
" Color Schemes | |
colorscheme onedark | |
set t_ut= | |
" Airline Settings | |
let g:airline_theme='simple' | |
" let g:airline_powerline_fonts = 1 | |
""t termguicolors | |
set modelines=0 | |
set wrap | |
set formatoptions=tcqrn1 | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab | |
set noshiftround | |
set scrolloff=5 | |
set number | |
set list | |
set mouse=a | |
if (empty($TMUX)) | |
if (has("nvim")) | |
let $NVIM_TUI_ENABLE_TRUE_COLOR=1 | |
endif | |
if (has("termguicolors")) | |
set termguicolors | |
endif | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment