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
|
scriptencoding utf-8
|
||||||
|
|
||||||
" Plugin installation
|
" Plugin specification and lua stuff
|
||||||
lua require 'plugins'
|
lua require('lua-init')
|
||||||
|
|
||||||
"{ Plugin settings
|
"{ Plugin settings
|
||||||
"{{ Vim-plug settings
|
"{{ Vim-plug settings
|
||||||
@ -16,8 +16,6 @@ call utils#Cabbrev('ps', 'PackerSync')
|
|||||||
"}}
|
"}}
|
||||||
|
|
||||||
"{{ Auto-completion related
|
"{{ Auto-completion related
|
||||||
lua require('entrance')
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""UltiSnips settings"""""""""""""""""""
|
"""""""""""""""""""""""""UltiSnips settings"""""""""""""""""""
|
||||||
" Trigger configuration. Do not use <tab> if you use YouCompleteMe
|
" Trigger configuration. Do not use <tab> if you use YouCompleteMe
|
||||||
let g:UltiSnipsExpandTrigger='<c-j>'
|
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