Remove old lua globals

pull/2/head
Ensar Sarajčić 2022-04-28 11:28:19 +02:00
parent d33416a12c
commit 7a7a01bbd2
2 changed files with 0 additions and 21 deletions

View File

@ -15,11 +15,6 @@ vim.api.nvim_exec('let $VIMPLUGINS = expand($VIMHOME."/lua/personal/plugins.lua"
-- Leader config to <Space>
vim.g.mapleader = " "
-- Globals taken from TJ config
-- Helpful for configuration
-- Might be removed in future version of NeoVim
require("init.globals")
require("init.plugins")
require("init.options")

View File

@ -1,16 +0,0 @@
-------------------------------------------------------------------------------
-- - Adopted from TJ config (https://github.com/tjdevries/config_manager/blob/master/xdg_config/nvim/lua/tj/globals/init.lua) -
-------------------------------------------------------------------------------
P = function(v)
print(vim.inspect(v))
return v
end
if pcall(require, "plenary") then
RELOAD = require("plenary.reload").reload_module
R = function(name)
RELOAD(name)
return require(name)
end
end