marleyvim/nvim/lua/snacks-nvim.lua

89 lines
2.5 KiB
Lua
Raw Normal View History

2024-11-28 20:30:20 -08:00
-- Snacks needs to be loaded very early, so it gets its own special file.
local set = vim.keymap.set
local lazyvim_format = require('lib.lazyvim.format')
local lazyvim_root = require('lib.lazyvim.root')
require('snacks').setup({
bigfile = { enabled = true },
dashboard = { enabled = true },
})
-- Buffers -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
set({ 'n' }, '<LEADER>bd', function()
Snacks.bufdelete()
end, { desc = 'Delete buffer' })
set({ 'n' }, '<LEADER>bo', function()
Snacks.bufdelete.other()
end, { desc = 'Delete other buffers' })
-- Toggles -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
local toggle = Snacks.toggle
lazyvim_format.snacks_toggle():map('<LEADER>uf')
lazyvim_format.snacks_toggle(true):map('<LEADER>uF') -- current buffer only
toggle.option('spell', { name = 'spelling' }):map('<LEADER>us')
toggle.option('wrap', { name = 'wrap' }):map('<LEADER>uw')
toggle.option('relativenumber', { name = 'relative number' }):map('<LEADER>uL')
toggle.line_number():map('<LEADER>ul')
toggle.diagnostics():map('<LEADER>ud')
toggle
.option(
'conceallevel',
{ off = 0, on = vim.o.conceallevel > 0 and vim.o.conceallevel or 2 }
)
:map('<LEADER>uc')
toggle.treesitter():map('<LEADER>uT')
if vim.lsp.inlay_hint then
toggle.inlay_hints():map('<LEADER>uh')
end
-- Git -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
set({ 'n' }, '<LEADER>gb', function()
Snacks.git.blame_line()
end, { desc = 'Git blame line' })
set({ 'n' }, '<LEADER>gB', function()
Snacks.gitbrowse()
end, { desc = 'Git browse (open)' })
set({ 'n' }, '<LEADER>gY', function()
Snacks.gitbrowse({
open = function(url)
vim.fn.setreg('+', url)
end,
})
end, { desc = 'Git browse (copy)' })
-- LazyGit -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
if vim.fn.executable('lazygit') == 1 then
set({ 'n' }, '<LEADER>gg', function()
Snacks.lazygit({ cwd = lazyvim_root.git() })
end, { desc = 'Lazygit (root dir)' })
-- set({ 'n' }, '<LEADER>gG', function()
-- Snacks.lazygit()
-- end, { desc = 'Lazygit (cwd)' })
set({ 'n' }, '<LEADER>gf', function()
Snacks.lazygit.log_file()
end, { desc = 'Lazygit current file history' })
set({ 'n' }, '<LEADER>gl', function()
Snacks.lazygit.log({ cwd = lazyvim_root.git() })
end, { desc = 'Lazygit log' })
-- set({ 'n' }, '<LEADER>gL', function()
-- Snacks.lazygit.log()
-- end, { desc = 'Lazygit log (cwd)' })
end