diff --git a/core/plugins.vim b/core/plugins.vim index a43bdb9..487bacd 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -1,7 +1,7 @@ scriptencoding utf-8 -" Plugin installation -lua require 'plugins' +" Plugin specification and lua stuff +lua require('lua-init') "{ Plugin settings "{{ Vim-plug settings @@ -16,8 +16,6 @@ call utils#Cabbrev('ps', 'PackerSync') "}} "{{ Auto-completion related -lua require('entrance') - """""""""""""""""""""""""UltiSnips settings""""""""""""""""""" " Trigger configuration. Do not use if you use YouCompleteMe let g:UltiSnipsExpandTrigger='' diff --git a/lua/entrance.lua b/lua/entrance.lua deleted file mode 100644 index f38cf27..0000000 --- a/lua/entrance.lua +++ /dev/null @@ -1,2 +0,0 @@ --- Some utility stuff -require 'utils' diff --git a/lua/lua-init.lua b/lua/lua-init.lua new file mode 100644 index 0000000..f68a865 --- /dev/null +++ b/lua/lua-init.lua @@ -0,0 +1,6 @@ +-- Some utility stuff +require 'utils' + +-- plugin installation +-- vim.defer_fn(function() require 'plugins' end, 2000) +require 'plugins'