diff --git a/.vimrc b/init.vim similarity index 97% rename from .vimrc rename to init.vim index 2f4851c..7f377ae 100644 --- a/.vimrc +++ b/init.vim @@ -45,6 +45,7 @@ Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " Deoplete Plug 'powerman/vim-plugin-AnsiEsc' " Documentation lookup Plug 'tpope/vim-fugitive' " Git wrapper +Plug 'airblade/vim-gitgutter' " Shows line modified since last git pull Plug 'terryma/vim-multiple-cursors' " atom like multicursor call plug#end() @@ -60,11 +61,14 @@ if (has("termguicolors")) endif " Theme +let g:one_allow_italics = 1 " Allows Italics + syntax enable colorscheme one set background=dark -let g:one_allow_italics = 1 +" Make comment on italic +highlight Comment cterm=italic " Lightline set noshowmode " remove -- INSERT -- @@ -73,9 +77,6 @@ let g:lightline = { \ 'colorscheme': 'one', \ } -" Make comment on italic -highlight Comment cterm=italic - " =============== " | Text editor | " =============== diff --git a/setup.sh b/setup.sh index 99e16af..44bd3a9 100755 --- a/setup.sh +++ b/setup.sh @@ -23,4 +23,4 @@ if [ "$YES" == false ] && [ -f "$FILE" ]; then fi rm -rf $FILE -ln .vimrc $FILE +ln init.vim $FILE