Compare commits

...

3 Commits

Author SHA1 Message Date
iGor milhit 7c055de06e
plugins: add plugins for CSV and for md links.
Co-Authored-by: iGor milhit <igor@milhit.ch>
2022-10-25 16:42:49 +02:00
iGor milhit 37e28c58d1
plugins: remove uneccessary config for COC
* Removes key mapping for the coc-completion which does not use the
  built-in vim completion mechanism anymore.

Co-Authored-by: iGor milhit <igor@milhit.ch>
2022-10-25 16:42:49 +02:00
iGor milhit c293cf8809
plugins: set edge light as color scheme
- Installs the edge and onehalf color schemes plugins.
- Removes the tokyonight color schemes.
- Sets edge light as main color scheme and as airline theme.
- Sets a background color for the selected item in the COC suggestion
  menu.

Co-Authored-by: iGor milhit <igor@milhit.ch>
2022-10-25 16:42:48 +02:00
1 changed files with 23 additions and 25 deletions

View File

@ -5,12 +5,15 @@ Plug 'tpope/vim-sensible' " De
Plug 'vim-pandoc/vim-pandoc' " Pandoc support
Plug 'vim-pandoc/vim-pandoc-syntax' " Markdown syntax support
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' } " Markdown preview
Plug 'jakewvincent/mkdnflow.nvim' " Create, follow, display links in a directory of md files
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
Plug 'sonph/onehalf', { 'rtp': 'vim' } " OneHalf color scheme
Plug 'sainnhe/edge' " Edge color schemes
Plug 'vim-airline/vim-airline' " Fancy bottom line in vim/neovim
Plug 'vim-airline/vim-airline-themes' " Themes for vim-airlines
Plug 'jiangmiao/auto-pairs' " Pairs autocomplete
@ -36,6 +39,7 @@ Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " Fu
Plug 'junegunn/fzf.vim' " fzf for vim/neovim
Plug 'stsewd/fzf-checkout.vim' " Fuzzy search in git branches
Plug 'ryanoasis/vim-devicons' " Add icons to plugins
Plug 'chrisbra/csv.vim' " To diplay and manage CSV files
call plug#end()
" Format indentation
@ -126,7 +130,7 @@ set clipboard+=unnamedplus
" Airline
let g:airline_powerline_fonts=1
let g:airline#extensions#wordcount#filetypes='pandoc\|text\|' "Add support when pandoc is activated
let g:airline_theme='nord'
let g:airline_theme='edge'
" Vim-table-mode. Set the table separator
let g:table_mode_corner='|'
@ -188,29 +192,6 @@ else
set signcolumn=yes
endif
" Use tab for trigger completion with characters ahead and navigate
inoremap <silent><expr> <TAB>
\ pumvisible() ? "\<C-n>" :
\ <SID>check_back_space() ? "\<TAB>" :
\ coc#refresh()
inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
" Use <c-space> to trigger completion.
if has('nvim')
inoremap <silent><expr> <c-space> coc#refresh()
else
inoremap <silent><expr> <c-@> coc#refresh()
endif
" Make <CR> auto-select the first completion item and notify coc.nvim to
" format on enter, <cr> could be remapped by other vim plugin
inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm()
\: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
" Use `[g` and `]g` to navigate diagnostics
" Use `:CocDiagnostics` to get all diagnostics of current buffer in location list.
nmap <silent> [g <Plug>(coc-diagnostic-prev)
@ -280,6 +261,23 @@ nnoremap <leader>? :Helptags<CR>
autocmd! User GoyoEnter Limelight
autocmd! User GoyoLeave Limelight!
" #########################################
" #########################################
" mkdnflow configuration
lua << EOF
require('mkdnflow').setup({
-- Config goes here; leave blank for defaults
links = {
conceal = true
}
})
EOF
" Syntax coloration and color theme
syntax enable
colorscheme nord
set background=light
let g:edge_style = "light"
colorscheme edge
" Set the Semantic Menu highlight group
hi CocMenuSel ctermbg=252