My first lua config
Directories are self explanatory + ui/* for ui stuff + statusbar in ui + keymap/* for keymaps + general for very minimal, required stuff
This commit is contained in:
commit
4989797e91
8 changed files with 622 additions and 0 deletions
6
lua/keymap/functional.lua
Executable file
6
lua/keymap/functional.lua
Executable file
|
@ -0,0 +1,6 @@
|
|||
function bind(f,...)
|
||||
local args={...}
|
||||
return function(...)
|
||||
return f(unpack(args),...)
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue