config(nvim): support asciidoc

main
sudo pacman -Syu 2024-05-31 18:24:22 +07:00
parent 23e6441aa3
commit 5c1879dcfc
2 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,8 @@ https://go.dev/blog/feed.atom
http://antirez.com/rss http://antirez.com/rss
https://0pointer.net/blog/index.atom https://0pointer.net/blog/index.atom
https://apenwarr.ca/log/rss.php 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://daniel.haxx.se/blog/feed/
https://drewdevault.com/blog/index.xml https://drewdevault.com/blog/index.xml
https://jvns.ca/atom.xml https://jvns.ca/atom.xml

View File

@ -390,6 +390,7 @@ require("lazy").setup({
{ {
"stevearc/conform.nvim", "stevearc/conform.nvim",
ft = { ft = {
"asciidoc",
"bash", "bash",
"conf", "conf",
"go", "go",
@ -520,6 +521,7 @@ require("lazy").setup({
{ {
"github/copilot.vim", "github/copilot.vim",
ft = { ft = {
"asciidoc",
"gitcommit", "gitcommit",
"go", "go",
"lua", "lua",
@ -534,6 +536,7 @@ require("lazy").setup({
init = function() init = function()
vim.g.copilot_filetypes = { vim.g.copilot_filetypes = {
["*"] = false, ["*"] = false,
asciidoc = true,
gitcommit = true, gitcommit = true,
go = true, go = true,
lua = true, lua = true,