Skip to content

Commit

Permalink
fix italics
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Dormoy committed Aug 5, 2019
1 parent b35d9d8 commit d97c523
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .vimrc → init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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 --
Expand All @@ -73,9 +77,6 @@ let g:lightline = {
\ 'colorscheme': 'one',
\ }

" Make comment on italic
highlight Comment cterm=italic

" ===============
" | Text editor |
" ===============
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ if [ "$YES" == false ] && [ -f "$FILE" ]; then
fi

rm -rf $FILE
ln .vimrc $FILE
ln init.vim $FILE

0 comments on commit d97c523

Please sign in to comment.