-- HELPERS ---------------------------------------------------- local cmd = vim.cmd -- to execute Vim commands e.g. cmd('pwd') local fn = vim.fn -- to call Vim functions e.g. fn.bufnr() local g = vim.g -- a table to access global variables local scopes = {o = vim.o, b = vim.bo, w = vim.wo} -- Set CMD ---------------------------------------------------- require("basic") -- Load Plugins ------------------------------------------------ require("plugins")