mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] Replace delimitMate with mini.pairs
This commit is contained in:
parent
37b2522e03
commit
125dbf8b26
3 changed files with 19 additions and 0 deletions
|
@ -54,6 +54,10 @@ let s:plug = funcref('dotfiles#plugman#register')
|
|||
endif
|
||||
" }}}
|
||||
|
||||
" mini.nvim {{{
|
||||
call s:plug('echasnovski/mini.pairs')
|
||||
" }}}
|
||||
|
||||
" Misc {{{
|
||||
if has('nvim')
|
||||
call s:plug('andweeb/presence.nvim')
|
||||
|
|
|
@ -5,6 +5,15 @@ let &runtimepath = g:k_nvim_dotfiles_dir.','.&runtimepath.','.g:k_nvim_dotfiles_
|
|||
let g:vim_ide = 1
|
||||
let g:dotfiles_rainbow_indent_opacity = 0.5
|
||||
|
||||
" Inhibited plugins {{{
|
||||
" I'd love to use dotfiles#plugman#inhibit in my plugins-list.vim but by that
|
||||
" point it is already too late.
|
||||
let g:dotfiles#plugman#inhibited_plugins = {}
|
||||
|
||||
" Does not do its job properly anymore, I'm afraid.
|
||||
let g:dotfiles#plugman#inhibited_plugins["delimitMate"] = 1
|
||||
" }}}
|
||||
|
||||
source <sfile>:p:h/../dmitmel-dotfiles/nvim/init.vim
|
||||
|
||||
if has('nvim')
|
||||
|
|
6
nvim/plugin/mini-nvim.lua
Normal file
6
nvim/plugin/mini-nvim.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
local ok, mini_pairs = pcall(require, "mini.pairs")
|
||||
if not ok then
|
||||
return
|
||||
end
|
||||
|
||||
mini_pairs.setup()
|
Loading…
Reference in a new issue