Last active
March 26, 2021 12:01
-
-
Save tutorgaming/3ddd86cc32a1896f5f7208ee2d27cb98 to your computer and use it in GitHub Desktop.
MY VIM SETTING ! - vim_plug
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() | |
Plug 'tpope/vim-fugitive' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'tpope/vim-sensible' | |
Plug 'fratajczak/one-monokai-vim' | |
Plug 'gosukiwi/vim-atom-dark' | |
Plug 'https://github.com/junegunn/vim-github-dashboard.git' | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'tpope/vim-surround' | |
Plug 'scrooloose/syntastic' | |
Plug 'airblade/vim-gitgutter' | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'scrooloose/nerdcommenter' | |
call plug#end() | |
" Key Mappings | |
map <silent> <C-k>b :NERDTreeToggle<CR> | |
" Functions | |
function! StartUp() | |
if 0 == argc() | |
NERDTree | |
end | |
endfunction | |
autocmd VimEnter * call StartUp() | |
" Settings | |
set termguicolors | |
set tabstop=4 | |
set number | |
syntax on | |
colorscheme one-monokai | |
let g:monokai_term_italic = 1 | |
let g:monokai_gui_italic = 1 | |
" Variable | |
let g:airline_powerline_fonts = 1 | |
set updatetime=100 | |
set cursorline | |
hi CursorLine gui=underline cterm=underline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment