From 5c1879dcfc6d0ed06b758649fca1a7c16e249c31 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Fri, 31 May 2024 18:24:22 +0700 Subject: [PATCH] config(nvim): support asciidoc --- data/newsboat/urls | 3 ++- data/nvim/init.lua | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/data/newsboat/urls b/data/newsboat/urls index c3a64f8..3417398 100644 --- a/data/newsboat/urls +++ b/data/newsboat/urls @@ -24,7 +24,8 @@ https://go.dev/blog/feed.atom http://antirez.com/rss https://0pointer.net/blog/index.atom https://apenwarr.ca/log/rss.php -https://brandur.org/atoms +https://brandur.org/articles.atom +https://brandur.org/fragments.atom https://daniel.haxx.se/blog/feed/ https://drewdevault.com/blog/index.xml https://jvns.ca/atom.xml diff --git a/data/nvim/init.lua b/data/nvim/init.lua index f360e88..157b763 100644 --- a/data/nvim/init.lua +++ b/data/nvim/init.lua @@ -390,6 +390,7 @@ require("lazy").setup({ { "stevearc/conform.nvim", ft = { + "asciidoc", "bash", "conf", "go", @@ -520,6 +521,7 @@ require("lazy").setup({ { "github/copilot.vim", ft = { + "asciidoc", "gitcommit", "go", "lua", @@ -534,6 +536,7 @@ require("lazy").setup({ init = function() vim.g.copilot_filetypes = { ["*"] = false, + asciidoc = true, gitcommit = true, go = true, lua = true,