diff --git a/lua/keymap/tool.lua b/lua/keymap/tool.lua index 9ec29a30d..6eebff316 100644 --- a/lua/keymap/tool.lua +++ b/lua/keymap/tool.lua @@ -129,7 +129,7 @@ local plug_map = { ["n|fz"] = map_cu("Telescope zoxide list") :with_noremap() :with_silent() - :with_desc("edit: Change current direrctory by zoxide"), + :with_desc("edit: Change current directory by zoxide"), ["n|fb"] = map_cu("Telescope buffers"):with_noremap():with_silent():with_desc("find: Buffer opened"), ["n|fs"] = map_cu("Telescope grep_string"):with_noremap():with_silent():with_desc("find: Current word"), ["v|fs"] = map_callback(function() diff --git a/lua/keymap/ui.lua b/lua/keymap/ui.lua index d45efe812..77df22d2a 100644 --- a/lua/keymap/ui.lua +++ b/lua/keymap/ui.lua @@ -11,7 +11,7 @@ local plug_map = { ["n|"] = map_cr("BufferLineMoveNext"):with_noremap():with_silent():with_desc("buffer: Move current to next"), ["n|"] = map_cr("BufferLineMovePrev"):with_noremap():with_silent():with_desc("buffer: Move current to prev"), ["n|be"] = map_cr("BufferLineSortByExtension"):with_noremap():with_desc("buffer: Sort by extension"), - ["n|bd"] = map_cr("BufferLineSortByDirectory"):with_noremap():with_desc("buffer: Sort by direrctory"), + ["n|bd"] = map_cr("BufferLineSortByDirectory"):with_noremap():with_desc("buffer: Sort by directory"), ["n|"] = map_cr("BufferLineGoToBuffer 1"):with_noremap():with_silent():with_desc("buffer: Goto buffer 1"), ["n|"] = map_cr("BufferLineGoToBuffer 2"):with_noremap():with_silent():with_desc("buffer: Goto buffer 2"), ["n|"] = map_cr("BufferLineGoToBuffer 3"):with_noremap():with_silent():with_desc("buffer: Goto buffer 3"),