diff --git a/config/nvim/init.lua b/config/nvim/init.lua index e5343fa..164c576 100644 --- a/config/nvim/init.lua +++ b/config/nvim/init.lua @@ -336,7 +336,7 @@ require("lazy").setup({ { "ibhagwan/fzf-lua", dependencies = { "nvim-tree/nvim-web-devicons" }, - opts = {}, + opts = { "fzf-tmux" }, fzf_opts = { ["--bind"] = { "ctrl-n:down", @@ -516,5 +516,7 @@ vim.keymap.set("n", "", ":tabNext", { desc = "Next tab", silent = true vim.keymap.set("n", "", ":write", { desc = "Save", silent = true }) vim.keymap.set("n", "", ":quit", { desc = "Quit", silent = true }) vim.keymap.set("n", "e", ":e .", { desc = "File explorer", silent = true }) -vim.keymap.set("n", "d", ":Trouble diagnostics toggle", { desc = "Diagnostic view", silent = true }) -vim.keymap.set("n", "f", ":FzfLua files cwd=~/", { desc = "Find file", silent = true }) +vim.keymap.set("n", "f", ":FzfLua files", { desc = "Find file", silent = true }) +vim.keymap.set("n", "F", ":FzfLua files cwd=~/", { desc = "Find file", silent = true }) +vim.keymap.set("n", "b", ":FzfLua buffers", { desc = "Find file", silent = true }) +vim.keymap.set("n", "d", ":FzfLua lsp_document_diagnostics", { desc = "Find file", silent = true }) diff --git a/tmux.conf b/tmux.conf index 2d90557..b04b2f3 100644 --- a/tmux.conf +++ b/tmux.conf @@ -72,5 +72,5 @@ set-window-option -g window-status-current-format '#[bg=#87afd7,fg=#000000] #I ' # Switching panes should change the foreground color but not border colors. set -g window-style 'bg=default,fg=#c6c6c6' set -g window-active-style 'bg=default,fg=white' -set -g pane-border-style 'bg=default,fg=#0c0c0c' -set -g pane-active-border-style 'bg=default,fg=#afd787' +set -g pane-border-style 'bg=#000000,fg=#000000' +set -g pane-active-border-style 'bg=#000000,fg=#000000'