Browse Source

feat: remove copilot, add buffer-vacuum

master
Tovi Jaeschke-Rogers 3 months ago
parent
commit
726fdfb63c
3 changed files with 21 additions and 64 deletions
  1. +10
    -0
      .config/nvim/lua/tovi/plugins/buffer-vacuum.lua
  2. +0
    -51
      .config/nvim/lua/tovi/plugins/copilot.lua
  3. +11
    -13
      .config/nvim/lua/tovi/plugins/gitsigns.lua

+ 10
- 0
.config/nvim/lua/tovi/plugins/buffer-vacuum.lua View File

@ -0,0 +1,10 @@
return {
{
'ChuufMaster/buffer-vacuum',
opts = {
max_buffers = 10,
count_pinned_buffers = false,
enable_messages = false,
}
},
}

+ 0
- 51
.config/nvim/lua/tovi/plugins/copilot.lua View File

@ -1,51 +0,0 @@
return {
{
'zbirenbaum/copilot.lua',
cmd = "Copilot",
event = "InsertEnter",
config = function()
require("copilot").setup({
panel = {
enabled = true,
auto_refresh = false,
keymap = {
jump_prev = "[[",
jump_next = "]]",
accept = "<CR>",
refresh = "gr",
open = "<M-CR>"
},
layout = {
position = "bottom", -- | top | left | right
ratio = 0.4
},
},
suggestion = {
enabled = false,
auto_trigger = true,
debounce = 75,
keymap = {
accept = ",,",
accept_word = false,
accept_line = false,
next = "<C-n>",
prev = "<C-p>",
dismiss = "<C-]>",
},
},
copilot_node_command = 'node', -- Node.js version must be > 18.x
server_opts_overrides = {},
})
end,
},
{
"zbirenbaum/copilot-cmp",
event = "BufEnter",
dependencies = {
"zbirenbaum/copilot.lua",
},
config = function()
require("copilot_cmp").setup()
end,
}
}

+ 11
- 13
.config/nvim/lua/tovi/plugins/gitsigns.lua View File

@ -4,30 +4,31 @@ return {
config = function () config = function ()
require('gitsigns').setup({ require('gitsigns').setup({
signs = { signs = {
add = {hl = 'GitSignsAdd' , text = '+', numhl='GitSignsAddNr' , linehl='GitSignsAddLn'},
change = {hl = 'GitSignsChange', text = '', numhl='GitSignsChangeNr', linehl='GitSignsChangeLn'},
delete = {hl = 'GitSignsDelete', text = '_', numhl='GitSignsDeleteNr', linehl='GitSignsDeleteLn'},
topdelete = {hl = 'GitSignsDelete', text = '', numhl='GitSignsDeleteNr', linehl='GitSignsDeleteLn'},
changedelete = {hl = 'GitSignsChange', text = '~', numhl='GitSignsChangeNr', linehl='GitSignsChangeLn'},
add = { text = '' },
change = { text = '' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
untracked = { text = '' },
}, },
signcolumn = true, -- Toggle with `:Gitsigns toggle_signs` signcolumn = true, -- Toggle with `:Gitsigns toggle_signs`
numhl = false, -- Toggle with `:Gitsigns toggle_numhl` numhl = false, -- Toggle with `:Gitsigns toggle_numhl`
linehl = false, -- Toggle with `:Gitsigns toggle_linehl` linehl = false, -- Toggle with `:Gitsigns toggle_linehl`
word_diff = false, -- Toggle with `:Gitsigns toggle_word_diff` word_diff = false, -- Toggle with `:Gitsigns toggle_word_diff`
watch_gitdir = { watch_gitdir = {
interval = 1000,
follow_files = true follow_files = true
}, },
attach_to_untracked = true,
auto_attach = true,
attach_to_untracked = false,
current_line_blame = true, -- Toggle with `:Gitsigns toggle_current_line_blame` current_line_blame = true, -- Toggle with `:Gitsigns toggle_current_line_blame`
current_line_blame_opts = { current_line_blame_opts = {
virt_text = true, virt_text = true,
virt_text_pos = 'eol', -- 'eol' | 'overlay' | 'right_align'
virt_text_pos = 'eol',
delay = 0, delay = 0,
ignore_whitespace = false, ignore_whitespace = false,
virt_text_priority = 100,
}, },
current_line_blame_formatter = '<author>, <author_time:%Y-%m-%d> - <summary>',
current_line_blame_formatter = '<author>, <author_time:%R> - <summary>',
sign_priority = 6, sign_priority = 6,
update_debounce = 100, update_debounce = 100,
status_formatter = nil, -- Use default status_formatter = nil, -- Use default
@ -40,9 +41,6 @@ return {
row = 0, row = 0,
col = 1 col = 1
}, },
yadm = {
enable = false
},
}) })
end end
} }

Loading…
Cancel
Save