mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-31 20:41:16 +01:00 
			
		
		
		
	nvim: added markdown plugin for concealment
This commit is contained in:
		| @@ -13,6 +13,7 @@ Plug 'airblade/vim-gitgutter' " git upgrades | |||||||
| Plug 'alvan/vim-closetag' " auto close HTML tags | Plug 'alvan/vim-closetag' " auto close HTML tags | ||||||
| Plug 'donRaphaco/neotex' , {'for': 'tex'} " asynchronous pdf rendering for pdf | Plug 'donRaphaco/neotex' , {'for': 'tex'} " asynchronous pdf rendering for pdf | ||||||
| Plug 'fatih/vim-go' , {'for': 'go'} " better support for golang | Plug 'fatih/vim-go' , {'for': 'go'} " better support for golang | ||||||
|  | Plug 'godlygeek/tabular', {'for': 'md'} " needed for preservim/vim-markdown | ||||||
| Plug 'hrsh7th/cmp-buffer' " autocompletion bridge for buffer | Plug 'hrsh7th/cmp-buffer' " autocompletion bridge for buffer | ||||||
| Plug 'hrsh7th/cmp-path' " autocompletion bridge for filesystem | Plug 'hrsh7th/cmp-path' " autocompletion bridge for filesystem | ||||||
| Plug 'hrsh7th/nvim-cmp' " autocompletion | Plug 'hrsh7th/nvim-cmp' " autocompletion | ||||||
| @@ -25,6 +26,7 @@ Plug 'majutsushi/tagbar', {'on': 'TagbarToggle'} " show tags | |||||||
| Plug 'mattesgroeger/vim-bookmarks' " Set bookmarks | Plug 'mattesgroeger/vim-bookmarks' " Set bookmarks | ||||||
| Plug 'neovim/nvim-lspconfig' " Language server client | Plug 'neovim/nvim-lspconfig' " Language server client | ||||||
| Plug 'onsails/lspkind-nvim' " icons on completion | Plug 'onsails/lspkind-nvim' " icons on completion | ||||||
|  | Plug 'preservim/vim-markdown', {'for': 'md'} " markdown enhancements | ||||||
| Plug 'qpkorr/vim-renamer' " bulk renamer | Plug 'qpkorr/vim-renamer' " bulk renamer | ||||||
| Plug 'raimondi/delimitmate' " automatic closing of brackets | Plug 'raimondi/delimitmate' " automatic closing of brackets | ||||||
| Plug 'rrethy/vim-hexokinase' , {'do': 'make hexokinase'} " color Preview | Plug 'rrethy/vim-hexokinase' , {'do': 'make hexokinase'} " color Preview | ||||||
| @@ -255,6 +257,11 @@ require'lspconfig'.jdtls.setup{ | |||||||
|  |  | ||||||
| EOF | EOF | ||||||
|  |  | ||||||
|  | " preservim/vim-markdown | ||||||
|  |  | ||||||
|  | let g:vim_markdown_folding_style_pythonic = 1 | ||||||
|  | let g:vim_markdown_folding_disabled = 1 | ||||||
|  |  | ||||||
| " rrethy/vim-hexokinase | " rrethy/vim-hexokinase | ||||||
| let g:Hexokinase_refreshEvents = ['InsertLeave'] | let g:Hexokinase_refreshEvents = ['InsertLeave'] | ||||||
| let g:Hexokinase_optInPatterns = [ | let g:Hexokinase_optInPatterns = [ | ||||||
| @@ -435,6 +442,9 @@ autocmd BufEnter,FileType nim set colorcolumn=80 | |||||||
| autocmd BufEnter,FileType python set colorcolumn=80 | autocmd BufEnter,FileType python set colorcolumn=80 | ||||||
| autocmd BufEnter,FileType tex set colorcolumn=80 | autocmd BufEnter,FileType tex set colorcolumn=80 | ||||||
|  |  | ||||||
|  | " conceallevel | ||||||
|  | autocmd BufEnter,FileType markdown set conceallevel=2 | ||||||
|  |  | ||||||
| "" colorscheme | "" colorscheme | ||||||
| set background=dark | set background=dark | ||||||
| colorscheme tccs | colorscheme tccs | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user