Compare commits

..

No commits in common. "e158434595f4ddf37429d039373a395db24fc17f" and "9726ac05c78239f3ddbdef6ae64804554f087ddb" have entirely different histories.

5 changed files with 8 additions and 18 deletions

View File

@ -19,9 +19,5 @@
package = pkgs.wireshark;
};
steam.enable = true;
appimage = {
enable = true;
binfmt = true;
};
};
}

View File

@ -240,8 +240,8 @@ return {
end,
},
mapping = {
["<C-k>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), { "i", "c" }),
["<C-j>"] = cmp.mapping(cmp.mapping.scroll_docs(4), { "i", "c" }),
["<C-s>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), { "i", "c" }),
["<C-d>"] = cmp.mapping(cmp.mapping.scroll_docs(4), { "i", "c" }),
["<C-Space>"] = cmp.mapping(cmp.mapping.complete(), { "i", "c" }),
["<C-y>"] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `<C-y>` mapping.
["<C-e>"] = cmp.mapping({

View File

@ -2,7 +2,7 @@ return {
{
"lukas-reineke/headlines.nvim",
dependencies = "nvim-treesitter/nvim-treesitter",
config = function()
opts = function()
local bullets = {
"󰪥",
"󰀘",
@ -21,8 +21,7 @@ return {
"@markup.heading.7.marker",
"@markup.heading.8.marker",
}
local headlines = require("headlines")
headlines.setup({
return {
markdown = {
bullets = bullets,
bullet_highlights = bullet_highlights,
@ -66,12 +65,9 @@ return {
bullet_highlights = bullet_highlights,
fat_headline_lower_string = "",
},
})
-- TODO: Upstream this fix to headlines.nvim
vim.api.nvim_create_autocmd("VimResized", {
callback = headlines.refresh,
})
}
end,
config = true,
ft = { "markdown", "norg", "rmd", "org" },
},
}

View File

@ -255,7 +255,7 @@ return {
{ "@lsp.typemod.variable.global", { fg = colors.lightBlue } },
-- Markup specific
{ "@markup.raw", { fg = colors.springViolet2, bg = colors.sumiInk1 } },
{ "@markup.raw", { fg = colors.oniViolet2, bg = colors.sumiInk1 } },
{ "@markup.raw.block", select_hl("@markup.raw", { "fg" }) },
{ "@markup.raw.delimiter", { link = "@punctuation.delimiter" } },
{
@ -364,7 +364,7 @@ return {
{ "@markup.heading.6.marker", { link = "@markup.heading.6" } },
{ "@markup.heading.7.marker", { link = "@markup.heading.7" } },
{ "@markup.heading.8.marker", { link = "@markup.heading.8" } },
{ "@markup.quote", { fg = colors.oldWhite }},
{ "@markup.quote.org", get_hl("@markup.quote", { bg = colors.sumiInk5 }) },
-- For Visual Whitespace plugin
{ "visual-whitespace", get_hl("Visual", { fg = colors.fujiGray }) },

View File

@ -32,8 +32,6 @@ in
packages =
with pkgs;
[
dig
nethogs
lsof
strace
ltrace