This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/globals.lua

22 lines
451 B
Lua
Raw Normal View History

2021-05-21 21:45:36 +02:00
-- Author : swytch
-- Created : Friday May 21, 2021 22:26:24 CET
-- License : GPLv3
-- Description : neovim global variables file
local M = {} -- The module to export
M = {
2021-05-21 21:10:09 +02:00
lsp_path = vim.fn.stdpath("data").. "/lsp",
-- misc
2021-09-25 17:34:20 +02:00
sign_error = "",
sign_warning = "",
sign_hint = "",
sign_info = "",
}
2021-05-21 21:45:36 +02:00
-- Make it accessible everywhere
_G.globals = M
-- Export the module
return M