Compare commits

...

7 Commits

Author SHA1 Message Date
Cian-H a68eeead4b Updated yazi config 2026-05-29 16:43:22 +01:00
Cian-H 535b5fe48b nvim update 2026-05-22 15:22:57 +01:00
Cian-H 01d87ff633 nvim treesitter updates 2026-05-22 15:09:38 +01:00
Cian-H f612da0d57 nvim updates 2026-05-20 14:30:24 +01:00
Cian-H 09438ac87b Switched tresitter provider for nvim 2026-05-20 14:26:31 +01:00
Cian-H 2c6629700d Neovim fixes 2026-05-20 14:03:28 +01:00
Cian-H 12b1519787 Added quarto specific config settings 2026-05-20 13:59:31 +01:00
3 changed files with 16 additions and 12 deletions
+5 -1
View File
@@ -1,2 +1,6 @@
[flavor] [flavor]
use = "tokyo-night" dark = "tokyo-night"
light = "tokyo-night"
[icon]
prepend_exts = [{ name = "qmd", text = "󰐙", fg = "#75aadb" }]
+10 -10
View File
@@ -1,14 +1,14 @@
[plugin] [plugin]
prepend_previewers = [ prepend_previewers = [
{ name = "*.md", run = "glow" }, { url = "*.md", run = "glow" },
{ name = "*.bin", run = "hexyl" }, { url = "*.bin", run = "hexyl" },
] ]
append_previewers = [ append_previewers = [
{ name = "*.md", run = "glow" }, { url = "*.md", run = "glow" },
{ name = "*.csv", run = "rich-preview" }, { url = "*.csv", run = "rich-preview" },
{ name = "*.rst", run = "rich-preview" }, { url = "*.rst", run = "rich-preview" },
{ name = "*.ipynb", run = "rich-preview" }, { url = "*.ipynb", run = "rich-preview" },
{ name = "*.json", run = "rich-preview" }, { url = "*.json", run = "rich-preview" },
{ mime = "application/*zip", run = "ouch" }, { mime = "application/*zip", run = "ouch" },
{ mime = "application/x-tar", run = "ouch" }, { mime = "application/x-tar", run = "ouch" },
{ mime = "application/x-bzip2", run = "ouch" }, { mime = "application/x-bzip2", run = "ouch" },
@@ -16,9 +16,9 @@ append_previewers = [
{ mime = "application/x-rar", run = "ouch" }, { mime = "application/x-rar", run = "ouch" },
{ mime = "application/x-xz", run = "ouch" }, { mime = "application/x-xz", run = "ouch" },
{ mime = "application/xz", run = "ouch" }, { mime = "application/xz", run = "ouch" },
{ name = "*", run = "hexyl" }, { url = "*", run = "hexyl" },
] ]
prepend_fetchers = [ prepend_fetchers = [
{ id = "git", name = "*", run = "git" }, { id = "git", url = "*", run = "git" },
{ id = "git", name = "*/", run = "git" }, { id = "git", url = "*/", run = "git" },
] ]