10 lines
465 B
Lua
10 lines
465 B
Lua
-- 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")
|