mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Tweak lua stuff
This commit is contained in:
5
lua/entrance.lua
Normal file
5
lua/entrance.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
-- Some utility stuff
|
||||
require 'utils'
|
||||
|
||||
-- LSP stuff
|
||||
require 'lsp'
|
||||
5
lua/utils.lua
Normal file
5
lua/utils.lua
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user