aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/plugins.vim2
-rw-r--r--lua/entrance.lua5
-rw-r--r--lua/utils.lua5
3 files changed, 11 insertions, 1 deletions
diff --git a/core/plugins.vim b/core/plugins.vim
index 2e50435..cb72594 100644
--- a/core/plugins.vim
+++ b/core/plugins.vim
@@ -312,7 +312,7 @@ call utils#Cabbrev('pc', 'PlugClean')
"}}
"{{ Auto-completion related
-lua require('lsp')
+lua require('entrance')
"""""""""""""""""""""""""UltiSnips settings"""""""""""""""""""
" Trigger configuration. Do not use <tab> if you use YouCompleteMe
diff --git a/lua/entrance.lua b/lua/entrance.lua
new file mode 100644
index 0000000..8839eed
--- /dev/null
+++ b/lua/entrance.lua
@@ -0,0 +1,5 @@
+-- Some utility stuff
+require 'utils'
+
+-- LSP stuff
+require 'lsp'
diff --git a/lua/utils.lua b/lua/utils.lua
new file mode 100644
index 0000000..dedc4af
--- /dev/null
+++ b/lua/utils.lua
@@ -0,0 +1,5 @@
+-- inspect something
+-- Taken from https://github.com/jamestthompson3/vimConfig/blob/eeef4a8eeb5a24938f8a0969a35f69c78643fb66/lua/tt/nvim_utils.lua#L106
+function inspect(item)
+ print(vim.inspect(item))
+end