- add autocmds to highlight yanking and disabling line numbers in Oil - lsp-zero: fix 'gd' command by setting 'preserve_mappings' to false - lualine: show clock, simplify statusline, shorten mode name - oil: decrease float window size, add 'q' hotkey to close window - prefs: show line numbers again, disable additional mode showing - add todo-comments.nvim - remap: add keymap to find all TODOs/FIXME/XXX etc.
14 lines
265 B
Lua
14 lines
265 B
Lua
-- debug
|
|
--print("weeheavy module imported")
|
|
|
|
-- init custom keybindings
|
|
require("weeheavy.remap")
|
|
|
|
-- Install and configure Lazy package manager
|
|
require("weeheavy.lazy")
|
|
|
|
-- Other preferences
|
|
require("weeheavy.prefs")
|
|
|
|
-- Auto commands
|
|
require("weeheavy.autocmd")
|