diff --git a/.config/kitty/kitty.conf##hostname.dbox b/.config/kitty/kitty.conf##hostname.dbox index 5c37650c..8f32d029 100644 --- a/.config/kitty/kitty.conf##hostname.dbox +++ b/.config/kitty/kitty.conf##hostname.dbox @@ -1,7 +1,6 @@ # disable_terminal_key_bindings yes # BEGIN_KITTY_FONTS # TODO: figure out how to make this conditional? -max_fps = 120 font_family family='SauceCodePro Nerd Font Mono' postscript_name=SauceCodeProNFM bold_font auto italic_font auto diff --git a/.config/nvim/lua/config/keymaps.lua b/.config/nvim/lua/config/keymaps.lua index df8d7099..63f77d04 100644 --- a/.config/nvim/lua/config/keymaps.lua +++ b/.config/nvim/lua/config/keymaps.lua @@ -7,15 +7,14 @@ local map = vim.keymap.set -- required to remap special sequence -- when inside tmux :) -require("tmux-remap").setup({ - special = "←", - remap = "", - autoset = true, -}) +-- require("tmux-remap").setup({ +-- special = "←", +-- remap = "", +-- autoset = true, +-- }) -map({ "n" }, "", function() - vim.notify("Special!") -end) +local special_key = "←" +vim.keymap.set({ "n", "i" }, special_key, "", { remap = true }) vim.keymap.set({ "i", "n" }, "", "") diff --git a/.config/nvim/lua/plugins/blink.lua b/.config/nvim/lua/plugins/blink.lua index 1010c374..47e672bd 100644 --- a/.config/nvim/lua/plugins/blink.lua +++ b/.config/nvim/lua/plugins/blink.lua @@ -12,6 +12,9 @@ return { nerd_font_variant = "mono", }, completion = { + list = { + selection = "manual", + }, accept = { -- experimental auto-brackets support auto_brackets = { @@ -40,7 +43,7 @@ return { keymap = { preset = "default", - [""] = {}, + [""] = { "accept", "fallback" }, [""] = { "fallback" }, [""] = { "select_and_accept", "fallback" }, -- [""] = { "select_prev", "fallback" }, diff --git a/.config/nvim/lua/tmux-remap.lua b/.config/nvim/lua/tmux-remap.lua index 8108ee8e..18123b12 100644 --- a/.config/nvim/lua/tmux-remap.lua +++ b/.config/nvim/lua/tmux-remap.lua @@ -5,7 +5,7 @@ local M = {} M.config = { special = "←", - remap = "", + remap = "", autoset = true, }