aboutsummaryrefslogtreecommitdiff
path: root/core/globals.lua
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2022-09-11 17:33:59 +0800
committerjdhao <jdhao@hotmail.com>2022-09-11 18:21:56 +0800
commit6e8e61e53ae15af3a9f5a3577ffea424dd95b66d (patch)
tree5bd2dd21b365a3e419aad4481493ae9630238153 /core/globals.lua
parent89effe8b172ef871ca38a90ff77003f5a796e521 (diff)
global.vim --> global.lua
fix 2 fix 3
Diffstat (limited to 'core/globals.lua')
-rw-r--r--core/globals.lua81
1 files changed, 81 insertions, 0 deletions
diff --git a/core/globals.lua b/core/globals.lua
new file mode 100644
index 0000000..56c5b19
--- /dev/null
+++ b/core/globals.lua
@@ -0,0 +1,81 @@
+local fn = vim.fn
+local api = vim.api
+
+local utils = require('utils')
+
+-- Inspect something
+function _G.inspect(item)
+ vim.pretty_print(item)
+end
+
+------------------------------------------------------------------------
+-- custom variables --
+------------------------------------------------------------------------
+vim.g.is_win = (utils.has("win32") or utils.has("win64")) and true or false
+vim.g.is_linux = (utils.has("unix") and (not utils.has("macunix"))) and true or false
+vim.g.is_mac = utils.has("macunix") and true or false
+
+vim.g.logging_level = "info"
+
+------------------------------------------------------------------------
+-- builtin variables --
+------------------------------------------------------------------------
+vim.g.loaded_perl_provider = 0 -- Disable perl provider
+vim.g.loaded_ruby_provider = 0 -- Disable ruby provider
+vim.g.loaded_node_provider = 0 -- Disable node provider
+vim.g.did_install_default_menus = 1 -- do not load menu
+
+if utils.executable('python3') then
+ if vim.g.is_win then
+ vim.g.python3_host_prog = fn.substitute(fn.exepath("python3"), ".exe$", '', 'g')
+ else
+ vim.g.python3_host_prog = fn.exepath("python3")
+ end
+else
+ api.nvim_err_writeln("Python3 executable not found! You must install Python3 and set its PATH correctly!")
+ return
+end
+
+-- Custom mapping <leader> (see `:h mapleader` for more info)
+vim.g.mapleader = ','
+
+-- Enable highlighting for lua HERE doc inside vim script
+vim.g.vimsyn_embed = 'l'
+
+-- Use English as main language
+if not vim.g.is_mac then
+ vim.cmd [[language en_US.utf-8]]
+end
+
+-- use filetype.lua instead of filetype.vim
+vim.g.do_filetype_lua = 1
+vim.g.did_load_filetypes = 0
+
+-- Disable loading certain plugins
+
+-- Whether to load netrw by default, see https://github.com/bling/dotvim/issues/4
+vim.g.loaded_netrw = 1
+vim.g.loaded_netrwPlugin = 1
+vim.g.netrw_liststyle = 3
+if vim.g.is_win then
+ vim.g.netrw_http_cmd = "curl --ssl-no-revoke -Lo"
+end
+
+-- Do not load tohtml.vim
+vim.g.loaded_2html_plugin = 1
+
+-- Do not load zipPlugin.vim, gzip.vim and tarPlugin.vim (all these plugins are
+-- related to checking files inside compressed files)
+vim.g.loaded_zipPlugin = 1
+vim.g.loaded_gzip = 1
+vim.g.loaded_tarPlugin = 1
+
+-- Do not load the tutor plugin
+vim.g.loaded_tutor_mode_plugin = 1
+
+-- Do not use builtin matchit.vim and matchparen.vim since we use vim-matchup
+vim.g.loaded_matchit = 1
+vim.g.loaded_matchparen = 1
+
+-- Disable sql omni completion, it is broken.
+vim.g.loaded_sql_completion = 1