1
0
Fork 0
- Add php lang
- Add lazygit conf
- Reconf icons
- Try fix
This commit is contained in:
Florian RICHER 2021-06-28 14:18:14 +02:00
parent 693ff850d5
commit a649e15e92
7 changed files with 27 additions and 1 deletions

View file

@ -2,6 +2,7 @@ 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 opt = vim.opt -- to set options
local o = vim.o -- to set options
local function map(mode, lhs, rhs, opts)
local options = {noremap = true}
@ -32,6 +33,7 @@ function get_helpers()
fn = fn,
g = g,
opt = opt,
o = o,
dump = dump,
call_with_helpers = call_with_helpers,
}