Last active
June 15, 2021 01:57
-
-
Save navichok26/6e6e9e5993dc483b3ef82206a031eb86 to your computer and use it in GitHub Desktop.
updateable .vimrc
This file contains 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 'sheerun/vim-polyglot' | |
Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'} | |
Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']} | |
Plug 'plasticboy/vim-markdown' | |
Plug 'flazz/vim-colorschemes' | |
Plug 'xolox/vim-colorscheme-switcher' | |
Plug 'xolox/vim-misc' | |
call plug#end() | |
set nocompatible | |
colorscheme preto | |
syntax enable | |
"set number | |
set tabstop=4 | |
set shiftwidth=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment