diff options
| author | kylo252 <[email protected]> | 2021-07-18 19:49:41 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-18 17:49:41 +0000 |
| commit | 59106e860edde09107d2628a81eee816871eb065 (patch) | |
| tree | e6e6b777c26d5b9b64ff92251c5cb7bcb3a6318d /init.lua | |
| parent | f0d22b299f2a49272454f657b32dacadceeb0096 (diff) | |
[Refactor] Make default keybindings configurable (#988)
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,10 +1,10 @@ require "default-config" -require "keymappings" local status_ok, error = pcall(vim.cmd, "luafile " .. CONFIG_PATH .. "/lv-config.lua") if not status_ok then print "something is wrong with your lv-config" print(error) end +require "keymappings" require "plugins" vim.g.colors_name = O.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs. require "settings" |
