Skip to content

Commit

Permalink
Fix for neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Feb 22, 2024
1 parent 6a235e1 commit e8acf1c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions autoload/dpp/min.vim
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ function dpp#min#_init() abort
\ && $HOME ==# ('~'.$SUDO_USER)->expand()
const g:dpp#_init_runtimepath = &runtimepath
const g:dpp#_did_load_filetypes =
\ g:->get('did_load_filetypes', v:false)
\ g:->get('did_load_filetypes', v:false)
\ || has('nvim')
const g:dpp#_did_load_ftplugin =
\ b:->get('did_ftplugin', v:false) || b:->get('did_indent', v:false)
\ b:->get('did_ftplugin', v:false)
\ || b:->get('did_indent', v:false)
\ || has('nvim')

let g:dpp#_plugins = {}
let g:dpp#_options = {}
Expand Down

0 comments on commit e8acf1c

Please sign in to comment.