-
Notifications
You must be signed in to change notification settings - Fork 5
Comparing changes
Open a pull request
base repository: linux-bytes/vim
base: master
head repository: linux-bytes/vim
compare: plug_dev
- 13 commits
- 3 files changed
- 1 contributor
Commits on Feb 19, 2018
-
Introduce in the VIM script manager: vim-plug
1. Just clone vim-plug script into autoload/: $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 2. And add the following into vimrc: call plug#begin('~/.vim/plugged') Plug 'junegunn/vim-plug', {'do':'cp -f plug.vim ../../autoload/'} call plug#end() 3. Update the '.gitignore' for ignoring the "plugged". Signed-off-by: Jerry Zhou <[email protected]>Configuration menu - View commit details
-
Copy full SHA for 1b35564 - Browse repository at this point
Copy the full SHA 1b35564View commit details -
Introduce more settings into VIMRC
Just introduce the followings into vimrc: 1. Global Misc Settings 2. Global ShortKey Settings 3. Some Settings related with File Try to use function to group all the settings. Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 373a77e - Browse repository at this point
Copy the full SHA 373a77eView commit details -
Introduce in some special file type settings
Just introduce the followings into vimrc: 1. some settings with c/h files 2. some settings with python files Bind these settings with 'autocmd' in vim. Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 86acbe7 - Browse repository at this point
Copy the full SHA 86acbe7View commit details -
Introduce in GUI settings and update shortkey
1. Introduce in some settings related GVim. 2. Update the shortkey settings: <leader>d: Delete the current buffer. <leader>o: Close the other windows. <leader>c: Close the current windows. Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 43a624f - Browse repository at this point
Copy the full SHA 43a624fView commit details -
Install more vim scripts with vim-plug
Introduce the following scripts into vim-plug: 1. Plug 'majutsushi/tagbar' 2. Plug 'andreyugolnik/manpageview' 3. Plug 'aperezdc/vim-template' 4. Plug 'aklt/plantuml-syntax' Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cd47e41 - Browse repository at this point
Copy the full SHA cd47e41View commit details -
1. Install the bufexplorer: Plug 'jlanzarotta/bufexplorer' 2. Make some configure with bufexplorer call s:configure_bufexplorer() 3. Fix a <leader> key issue: let mapleader=" " => let g:mapleader=" " Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b1d1746 - Browse repository at this point
Copy the full SHA b1d1746View commit details -
1. Install the NERDTree: Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'} 2. Make some configure with NERDTree: call s:configure_nredtree() Signed-off-by: Jerry Zhou <[email protected]>Configuration menu - View commit details
-
Copy full SHA for 48ab598 - Browse repository at this point
Copy the full SHA 48ab598View commit details -
1. Install the ultisnips: Plug 'SirVer/ultisnips' Plug 'honza/vim-snippets' 2. Make some configure with ultisnips call s:configure_ultisnips() 3. Just remove some useless space in variable assignment expression for fixing some issues. Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8ac6ef8 - Browse repository at this point
Copy the full SHA 8ac6ef8View commit details -
1. Install the powerline, airline and airline themes: Plug 'Lokaltog/vim-powerline' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' 2. Make some configure with airline call s:configure_airline() Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c28fc1a - Browse repository at this point
Copy the full SHA c28fc1aView commit details -
1. Install the gitgutter: Plug 'airblade/vim-gitgutter' 2. Make some configure with gitgutter call s:configure_gitgutter() Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fc30e11 - Browse repository at this point
Copy the full SHA fc30e11View commit details -
1. Install the CtrlP: Plug 'ctrlpvim/ctrlp.vim' 2. Make some configure with CtrlP: call s:configure_ctrlp() Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6643d23 - Browse repository at this point
Copy the full SHA 6643d23View commit details -
1. Install the YouCompleteMe: Plug 'Valloric/YouCompleteMe', { ... } Signed-off-by: Jerry Zhou <[email protected]>Configuration menu - View commit details
-
Copy full SHA for 4462d52 - Browse repository at this point
Copy the full SHA 4462d52View commit details
Commits on Feb 20, 2018
-
Introduce in CtrlPFunky and Improve CtrlP
1. Improve the CtrlP: Introduce in ctrlp-py-matcher and improve the function s:configure_ctrlp() to speed up the search. 2. Make some configure with CtrlPFunky: call s:configure_ctrlpfunky() Signed-off-by: Jerry Zhou <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 653163a - Browse repository at this point
Copy the full SHA 653163aView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...plug_dev