Skip to content

Commit

Permalink
minor config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fbosch committed Aug 22, 2024
1 parent fcbe266 commit e069b5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .config/nvim/lua/keymap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ local opts = { noremap = true, silent = true }
-- disable
map("n", "<Space>", "<NOP>", opts)

map("v", "<leader>dc", "<CMD>DiffClip<CR>", opts)

-- disable arrow keys in insert mode
map("i", "<Up>", "<NOP>", opts)
map("i", "<Down>", "<NOP>", opts)
Expand Down
2 changes: 1 addition & 1 deletion .config/nvim/lua/plugins/interface/barbar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ return {
{
mode = { "n" },
"<leader>x",
":only <bar> :BufferCloseAllButCurrentOrPinned<cr>",
":only <bar> :BufferCloseAllButVisible<cr>",
desc = "close all but currentl active buffer or pinned buffers",
silent = true,
},
Expand Down
3 changes: 0 additions & 3 deletions .config/nvim/lua/plugins/interface/incline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ return {
vim.api.nvim_set_hl(0, "InclineNormal", { bg = "NONE" })
vim.api.nvim_set_hl(0, "InclineNormalNC", { bg = "NONE" })
require("incline").setup({
hide = {
focused_win = true,
},
highlight = {
groups = {
InclineNormal = {
Expand Down
1 change: 1 addition & 0 deletions .config/nvim/lua/plugins/workflow/fzf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ return {
fzf.live_grep_native({
rg_glob = true,
exec_empty_query = false,
resume = true,
rg_opts = combined_options,
})
end, {})
Expand Down

0 comments on commit e069b5b

Please sign in to comment.