Skip to content

Commit

Permalink
Merge pull request #438 from Jint-lzxy/tabout/fix
Browse files Browse the repository at this point in the history
fix(tabout): Unset default keymap
  • Loading branch information
ayamir authored Jan 27, 2023
2 parents 4327d80 + 5cfbc25 commit 8760aef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lua/modules/editor/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,8 @@ end

function config.tabout()
require("tabout").setup({
tabkey = "<Tab>", -- key to trigger tabout, set to an empty string to disable
backwards_tabkey = "<S-Tab>", -- key to trigger backwards tabout, set to an empty string to disable
tabkey = "", -- key to trigger tabout, set to an empty string to disable
backwards_tabkey = "", -- key to trigger backwards tabout, set to an empty string to disable
act_as_tab = true, -- shift content if tab out is not possible
act_as_shift_tab = false, -- reverse shift content if tab out is not possible (if your keyboard/terminal supports <S-Tab>)
enable_backwards = true,
Expand Down
4 changes: 2 additions & 2 deletions lua/modules/ui/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ function config.catppuccin()
-- ["@constant.macro"] = { fg = cp.mauve },

-- ["@label"] = { fg = cp.blue },
["@method"] = { style = { "italic" } },
["@method"] = { fg = cp.blue, style = { "italic" } },
["@namespace"] = { fg = cp.rosewater, style = {} },

["@punctuation.delimiter"] = { fg = cp.teal },
Expand Down Expand Up @@ -625,7 +625,7 @@ function config.nvim_tree()
hijack_netrw = true,
hijack_unnamed_buffer_when_opening = true,
ignore_buffer_on_setup = false,
open_on_setup = true,
open_on_setup = false,
open_on_setup_file = false,
open_on_tab = false,
sort_by = "name",
Expand Down

0 comments on commit 8760aef

Please sign in to comment.