From b9e960338373942552a42079f2c29d5017800bda Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Fri, 16 May 2025 20:25:28 +0200 Subject: [PATCH] Updated scripts --- config/lazygit/config.yml | 4 ++-- config/nvim/init.lua | 17 +++-------------- tmux.conf | 2 +- 3 files changed, 6 insertions(+), 17 deletions(-) diff --git a/config/lazygit/config.yml b/config/lazygit/config.yml index 18bec7b..9c2f362 100644 --- a/config/lazygit/config.yml +++ b/config/lazygit/config.yml @@ -1,6 +1,6 @@ gui: - showIcons: false + showIcons: false theme: selectedLineBgColor: - - '#585858' # set to `default` to have no background colour + - "#585858" # set to `default` to have no background colour diff --git a/config/nvim/init.lua b/config/nvim/init.lua index 164c576..bc388c6 100644 --- a/config/nvim/init.lua +++ b/config/nvim/init.lua @@ -335,14 +335,8 @@ require("lazy").setup({ -- File explorer ------------------------------------------- { "ibhagwan/fzf-lua", - dependencies = { "nvim-tree/nvim-web-devicons" }, + dependencies = { "echasnovski/mini.icons" }, opts = { "fzf-tmux" }, - fzf_opts = { - ["--bind"] = { - "ctrl-n:down", - "ctrl-p:up", - }, - }, }, -- GUI ------------------------------------------------------ @@ -479,12 +473,6 @@ require("lazy").setup({ keys = "etovxqpdygfblzhckisuran", }, }, - - { - "folke/trouble.nvim", - dependencies = { "nvim-tree/nvim-web-devicons" }, - opts = {}, - }, }, {}) -- resizing splits @@ -519,4 +507,5 @@ vim.keymap.set("n", "e", ":e .", { desc = "File explorer", silent = 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 }) +vim.keymap.set("n", "d", ":FzfLua lsp_document_diagnostics", { desc = "find file", silent = true }) +vim.keymap.set("n", "o", ":FzfLua oldfiles", { desc = "find file", silent = true }) diff --git a/tmux.conf b/tmux.conf index b04b2f3..2f43d16 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=#000000,fg=#000000' +set -g pane-border-style 'bg=#000000,fg=#262626' set -g pane-active-border-style 'bg=#000000,fg=#000000'