mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
change how lua conf is invoked
This commit is contained in:
parent
8ff1e683aa
commit
f528aa216c
@ -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 <tab> if you use YouCompleteMe
|
||||
let g:UltiSnipsExpandTrigger='<c-j>'
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
-- Some utility stuff
|
||||
require 'utils'
|
||||
6
lua/lua-init.lua
Normal file
6
lua/lua-init.lua
Normal file
@ -0,0 +1,6 @@
|
||||
-- Some utility stuff
|
||||
require 'utils'
|
||||
|
||||
-- plugin installation
|
||||
-- vim.defer_fn(function() require 'plugins' end, 2000)
|
||||
require 'plugins'
|
||||
Loading…
x
Reference in New Issue
Block a user