Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Aug 21, 2024
1 parent 1506ffd commit 8215938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nxvim/keymaps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ nx.map({
-- Indentation
-- NOTE: mapping <Tab> in normal mode == mapping <C-i>
{ "<S-Tab>", "<C-d>", "i", desc = "Outdent" },
-- Use correct indetation level when entering insert mode on empty lines
-- Use correct indentation level when entering insert mode on empty lines
{ "i", "len(getline('.')) == 0 ? '\"_cc' : 'i'", expr = true, silent = true },
{ "a", "len(getline('.')) == 0 ? '\"_cc' : 'a'", expr = true, silent = true },
{ "A", "len(getline('.')) == 0 ? '\"_cc' : 'A'", expr = true, silent = true },
Expand Down

0 comments on commit 8215938

Please sign in to comment.