config(nvim): support asciidoc
parent
23e6441aa3
commit
5c1879dcfc
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue