Compare commits

..

No commits in common. "873b17f69e01a447631c6dcb462bb69d2cc7993a" and "870758fc6ef51fa11de5ca639340a354fbe5a43d" have entirely different histories.

10 changed files with 89 additions and 85 deletions

View File

@ -86,8 +86,8 @@ M.setup = function()
---@type string? The file extension if detected
local extension = vim.fn.fnamemodify(path, ":e")
---@type string The filename if detected
local filename = vim.fn.fnamemodify(path, ":t") or "[Unknown Filename]"
---@type string? The filename if detected
local filename = vim.fn.fnamemodify(path, ":t")
---Open a given file path in a given program and remove the buffer for the file.
---@param buf integer The buffer handle for the opening buffer
@ -104,22 +104,35 @@ M.setup = function()
vim.api.nvim_buf_delete(buf, { force = true })
end
local extensions = {
"pdf",
"djvu",
"wav",
"png",
"jpg",
"docx",
"mp4",
"webm",
"pptx",
"gif",
local extension_callbacks = {
["pdf"] = open_mime,
["djvu"] = "pdf",
["wav"] = open_mime,
["png"] = open_mime,
["jpg"] = "png",
["docx"] = open_mime,
["mp4"] = open_mime,
["webm"] = open_mime,
["pptx"] = open_mime,
["gif"] = "mp4",
}
if extension and not extension:match("^%s*$") and intercept_file_open then
if vim.list_contains(extensions, extension) then
open_mime(bufnr, path, filename)
---Get the extension callback for a given extension. Will do a recursive lookup if an extension callback is actually
---of type string to get the correct extension
---@param ext string A file extension. Example: `png`.
---@return fun(bufnr: integer, path: string, filename: string?) extension_callback The extension callback to invoke, expects a buffer handle, file path, and filename.
local function extension_lookup(ext)
local callback = extension_callbacks[ext]
if type(callback) == "string" then
callback = extension_lookup(callback)
end
return callback
end
if extension ~= nil and not extension:match("^%s*$") and intercept_file_open then
local callback = extension_lookup(extension)
if type(callback) == "function" then
callback(bufnr, path, filename)
end
end
end,

View File

@ -1,4 +1,14 @@
return {
{
"lewis6991/gitsigns.nvim",
event = { "BufReadPre", "BufNewFile" },
opts = {
current_line_blame = true,
current_line_blame_opts = {
delay = 0,
},
},
},
{
"sindrets/diffview.nvim",
keys = {

View File

@ -1108,7 +1108,7 @@ return {
disable_winbar_cb = function(args)
return conditions.buffer_matches({
buftype = { "nofile", "prompt", "quickfix", "terminal" },
filetype = { "fugitive", "Trouble", "dashboard", ".*neogit.*", "Overseer.*" },
filetype = { "fugitive", "Trouble", "dashboard", ".*neogit.*", "no-neck-pain" },
}, args.buf)
end,
},

View File

@ -0,0 +1,19 @@
return {
{
"RaafatTurki/hex.nvim",
opts = {
-- Make it explicit, auto detection is cool and all, but annoying for my use case
is_buf_binary_pre_read = function()
return false
end,
is_buf_binary_post_read = function()
return false
end,
},
cmd = {
"HexDump",
"HexAssemble",
"HexToggle",
},
},
}

View File

@ -0,0 +1,19 @@
return {
{
"shortcuts/no-neck-pain.nvim",
opts = {
width = 160,
},
cmd = {
"NoNeckPain",
"NoNeckPainResize",
"NoNeckPainWidthDown",
"NoNeckPainScratchPad",
"NoNeckPainToggleLeftSide",
"NoNeckPainToggleRightSide",
},
keys = {
{ "<localleader>b", "<cmd>NoNeckPain<cr>", desc = "NoNeckPain: Toggle" },
},
},
}

View File

@ -1,61 +0,0 @@
return {
{
"stevearc/overseer.nvim",
cmd = {
"OverseerOpen",
"OverseerClose",
"OverseerToggle",
"OverseerSaveBundle",
"OverseerLoadBundle",
"OverseerDeleteBundle",
"OverseerRunCmd",
"OverseerRun",
"OverseerInfo",
"OverseerBuild",
"OverseerQuickAction",
"OverseerTaskAction",
"OverseerClearCache",
},
keys = {
{ "<leader>r", desc = "Overseer" },
{ "<leader>rr", "<cmd>OverseerRun<CR>", desc = "Overseer: Run" },
{ "<leader>rt", "<cmd>OverseerToggle<CR>", desc = "Overseer: Toggle" },
},
config = function()
local overseer = require("overseer")
overseer.setup()
local tempname_caches = {}
--- Get a temp file bound to the bufnr
local function tempname()
local bufnr = vim.api.nvim_get_current_buf()
if not tempname_caches[bufnr] then
tempname_caches[bufnr] = vim.fn.tempname()
end
return tempname_caches[bufnr]
end
overseer.register_template(
---@type overseer.TemplateDefinition
{
name = "Watch Typst",
desc = "Run `typst watch` and view the PDF",
---@return overseer.TaskDefinition
builder = function(_)
return {
cmd = {
"typst",
"watch",
"--open=xdg-open",
vim.api.nvim_buf_get_name(vim.api.nvim_get_current_buf()),
tempname() .. ".pdf",
},
}
end,
condition = {
filetype = "typst",
},
}
)
end,
},
}

View File

@ -0,0 +1,9 @@
return {
{
"chomosuke/typst-preview.nvim",
ft = "typst",
build = function()
require("typst-preview").update()
end,
},
}

View File

@ -320,5 +320,3 @@ lookups
incrementing
rebalance
backend
STDIN
stdin

View File

@ -23,7 +23,7 @@
"enabled": true
},
"MessageAccessoriesAPI": {
"enabled": true
"enabled": false
},
"MessageDecorationsAPI": {
"enabled": true
@ -681,9 +681,6 @@
},
"SettingsStoreAPI": {
"enabled": false
},
"UserSettingsAPI": {
"enabled": true
}
},
"notifications": {
@ -696,6 +693,6 @@
"authenticated": false,
"url": "https://api.vencord.dev/",
"settingsSync": false,
"settingsSyncVersion": 1719128377334
"settingsSyncVersion": 1718769847454
}
}