Created
March 14, 2022 21:05
-
-
Save HurricanKai/e5014199fb8deb47e7ad52e373b28c31 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
" Place in ~/.config/nvim/init.vim | |
" Install https://github.com/Shougo/dein.vim | |
"den Scripts----------------------------- | |
if &compatible | |
set nocompatible " Be iMproved | |
endif | |
" Required: | |
set runtimepath+=/home/kaije/.vim/dein/repos/github.com/Shougo/dein.vim | |
" Required: | |
call dein#begin('/home/kaije/.vim/dein') | |
" Let dein manage dein | |
" Required: | |
call dein#add('/home/kaije/.vim/dein/repos/github.com/Shougo/dein.vim') | |
" Plugins start ----------------------------------------- | |
call dein#add('preservim/nerdtree') | |
autocmd VimEnter * NERDTree | |
call dein#add('tiagofumo/vim-nerdtree-syntax-highlight') | |
call dein#add('PhilRunninger/nerdtree-visual-selection') | |
call dein#add('Xuyuanp/nerdtree-git-plugin') | |
let g:NERDTreeGitStatusUseNerdFonts = 1 | |
call dein#add('ryanoasis/vim-devicons') | |
call dein#add('tpope/vim-fugitive') | |
call dein#add('tpope/vim-rhubarb') " GitHub support for :GBrowser | |
" call dein#add('Yggdroot/indentLine') | |
call dein#disable('Yggdroot/indentLine') | |
call dein#add('preservim/vim-markdown') | |
call dein#add('easymotion/vim-easymotion') | |
" Plugins end ------------------------------- | |
" Required: | |
call dein#end() | |
" Required: | |
filetype plugin indent on | |
syntax enable | |
if dein#check_install() | |
call dein#install() | |
endif | |
"End dein Scripts-------------------------i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment