parent
172b784763
commit
3550265ff6
7
init.vim
7
init.vim
|
@ -7,6 +7,7 @@ Plug 'vim-pandoc/vim-pandoc-syntax' " Ma
|
|||
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' } " Markdown preview
|
||||
Plug 'dhruvasagar/vim-table-mode', { 'on': 'TableModeEnable' } " Helper for table in markdown
|
||||
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' } " Distraction free mode for writing
|
||||
Plug 'junegunn/limelight.vim', { 'on': 'Goyo' } " Dime the color of the text that is not being updated
|
||||
Plug 'lervag/vimtex' " Filetype and syntax plugin for LaTeX files
|
||||
Plug 'dpelle/vim-Grammalecte' " French ortho/grammar spelling
|
||||
Plug 'arcticicestudio/nord-vim' " Nord color scheme
|
||||
|
@ -270,6 +271,12 @@ nnoremap <leader>c :Commits<CR>
|
|||
nnoremap <leader>bc :BCommits<CR>
|
||||
nnoremap <leader>? :Helptags<CR>
|
||||
|
||||
" #########################################
|
||||
" #########################################
|
||||
" Integrate Limelight into Goyo
|
||||
autocmd! User GoyoEnter Limelight
|
||||
autocmd! User GoyoLeave Limelight!
|
||||
|
||||
" Syntax coloration and color theme
|
||||
syntax enable
|
||||
colorscheme nord
|
||||
|
|
Loading…
Reference in New Issue