Compare commits
No commits in common. "e158434595f4ddf37429d039373a395db24fc17f" and "9726ac05c78239f3ddbdef6ae64804554f087ddb" have entirely different histories.
e158434595
...
9726ac05c7
@ -19,9 +19,5 @@
|
|||||||
package = pkgs.wireshark;
|
package = pkgs.wireshark;
|
||||||
};
|
};
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
appimage = {
|
|
||||||
enable = true;
|
|
||||||
binfmt = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -240,8 +240,8 @@ return {
|
|||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
mapping = {
|
mapping = {
|
||||||
["<C-k>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), { "i", "c" }),
|
["<C-s>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), { "i", "c" }),
|
||||||
["<C-j>"] = 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-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-y>"] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `<C-y>` mapping.
|
||||||
["<C-e>"] = cmp.mapping({
|
["<C-e>"] = cmp.mapping({
|
||||||
|
@ -2,7 +2,7 @@ return {
|
|||||||
{
|
{
|
||||||
"lukas-reineke/headlines.nvim",
|
"lukas-reineke/headlines.nvim",
|
||||||
dependencies = "nvim-treesitter/nvim-treesitter",
|
dependencies = "nvim-treesitter/nvim-treesitter",
|
||||||
config = function()
|
opts = function()
|
||||||
local bullets = {
|
local bullets = {
|
||||||
"",
|
"",
|
||||||
"",
|
"",
|
||||||
@ -21,8 +21,7 @@ return {
|
|||||||
"@markup.heading.7.marker",
|
"@markup.heading.7.marker",
|
||||||
"@markup.heading.8.marker",
|
"@markup.heading.8.marker",
|
||||||
}
|
}
|
||||||
local headlines = require("headlines")
|
return {
|
||||||
headlines.setup({
|
|
||||||
markdown = {
|
markdown = {
|
||||||
bullets = bullets,
|
bullets = bullets,
|
||||||
bullet_highlights = bullet_highlights,
|
bullet_highlights = bullet_highlights,
|
||||||
@ -66,12 +65,9 @@ return {
|
|||||||
bullet_highlights = bullet_highlights,
|
bullet_highlights = bullet_highlights,
|
||||||
fat_headline_lower_string = "▀",
|
fat_headline_lower_string = "▀",
|
||||||
},
|
},
|
||||||
})
|
}
|
||||||
-- TODO: Upstream this fix to headlines.nvim
|
|
||||||
vim.api.nvim_create_autocmd("VimResized", {
|
|
||||||
callback = headlines.refresh,
|
|
||||||
})
|
|
||||||
end,
|
end,
|
||||||
|
config = true,
|
||||||
ft = { "markdown", "norg", "rmd", "org" },
|
ft = { "markdown", "norg", "rmd", "org" },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -255,7 +255,7 @@ return {
|
|||||||
{ "@lsp.typemod.variable.global", { fg = colors.lightBlue } },
|
{ "@lsp.typemod.variable.global", { fg = colors.lightBlue } },
|
||||||
|
|
||||||
-- Markup specific
|
-- 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.block", select_hl("@markup.raw", { "fg" }) },
|
||||||
{ "@markup.raw.delimiter", { link = "@punctuation.delimiter" } },
|
{ "@markup.raw.delimiter", { link = "@punctuation.delimiter" } },
|
||||||
{
|
{
|
||||||
@ -364,7 +364,7 @@ return {
|
|||||||
{ "@markup.heading.6.marker", { link = "@markup.heading.6" } },
|
{ "@markup.heading.6.marker", { link = "@markup.heading.6" } },
|
||||||
{ "@markup.heading.7.marker", { link = "@markup.heading.7" } },
|
{ "@markup.heading.7.marker", { link = "@markup.heading.7" } },
|
||||||
{ "@markup.heading.8.marker", { link = "@markup.heading.8" } },
|
{ "@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
|
-- For Visual Whitespace plugin
|
||||||
{ "visual-whitespace", get_hl("Visual", { fg = colors.fujiGray }) },
|
{ "visual-whitespace", get_hl("Visual", { fg = colors.fujiGray }) },
|
||||||
|
@ -32,8 +32,6 @@ in
|
|||||||
packages =
|
packages =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
[
|
[
|
||||||
dig
|
|
||||||
nethogs
|
|
||||||
lsof
|
lsof
|
||||||
strace
|
strace
|
||||||
ltrace
|
ltrace
|
||||||
|
Loading…
Reference in New Issue
Block a user