style(nvim): format with stylua
This commit is contained in:
parent
43e1917bac
commit
376e581ba5
@ -2,8 +2,8 @@ local file_loc = vim.fn.expand("%:p:h")
|
||||
|
||||
vim.opt_local.makeprg = "docker build " .. file_loc
|
||||
|
||||
vim.api.nvim_create_autocmd({ "TextChanged", "TextChangedI"}, {
|
||||
vim.api.nvim_create_autocmd({ "TextChanged", "TextChangedI" }, {
|
||||
callback = function()
|
||||
require("lint").try_lint()
|
||||
end
|
||||
})
|
||||
end,
|
||||
})
|
||||
|
@ -3,5 +3,5 @@ vim.opt_local.shiftwidth = 2
|
||||
|
||||
vim.keymap.set("n", "<leader>fr", ":!xdg-open %<CR>", {
|
||||
buffer = true,
|
||||
silent = true
|
||||
silent = true,
|
||||
})
|
||||
|
@ -14,9 +14,9 @@ return {
|
||||
config = function()
|
||||
local list_patterns = {
|
||||
unordered = "[-+*]", -- - + *
|
||||
digit = "%d+[.)]", -- 1. 2. 3.
|
||||
ascii = "%a[.)]", -- a) b) c)
|
||||
roman = "%u*[.)]", -- I. II. III.
|
||||
digit = "%d+[.)]", -- 1. 2. 3.
|
||||
ascii = "%a[.)]", -- a) b) c)
|
||||
roman = "%u*[.)]", -- I. II. III.
|
||||
}
|
||||
|
||||
require("autolist").setup({
|
||||
@ -35,8 +35,8 @@ return {
|
||||
list_patterns.digit,
|
||||
list_patterns.ascii,
|
||||
list_patterns.roman,
|
||||
">"
|
||||
}
|
||||
">",
|
||||
},
|
||||
},
|
||||
})
|
||||
local autolist_group = vim.api.nvim_create_augroup("Autolist", {})
|
||||
@ -120,4 +120,4 @@ return {
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ return {
|
||||
filetype = {
|
||||
markdown = filetypes.markdown.prettierd,
|
||||
css = filetypes.css.prettierd,
|
||||
lua = filetypes.lua.stylua
|
||||
lua = filetypes.lua.stylua,
|
||||
},
|
||||
}
|
||||
end,
|
||||
|
@ -2,7 +2,7 @@ return {
|
||||
{
|
||||
"chrishrb/gx.nvim",
|
||||
keys = {
|
||||
{ "gx", desc = "Open filepath or URI" }
|
||||
{ "gx", desc = "Open filepath or URI" },
|
||||
},
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
config = true, -- default settings
|
||||
|
@ -1,8 +1,8 @@
|
||||
return {
|
||||
{
|
||||
'lukas-reineke/headlines.nvim',
|
||||
"lukas-reineke/headlines.nvim",
|
||||
dependencies = "nvim-treesitter/nvim-treesitter",
|
||||
config = true, -- or `opts = {}`
|
||||
filetypes = { "markdown", "norg", "rmd", "org" }
|
||||
}
|
||||
}
|
||||
filetypes = { "markdown", "norg", "rmd", "org" },
|
||||
},
|
||||
}
|
||||
|
@ -11,7 +11,8 @@ return {
|
||||
"HighlightColorsToggle",
|
||||
},
|
||||
config = true,
|
||||
},{
|
||||
},
|
||||
{
|
||||
"uga-rosa/ccc.nvim",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
config = function()
|
||||
@ -24,7 +25,7 @@ return {
|
||||
},
|
||||
highlighter = {
|
||||
auto_enable = true,
|
||||
lsp = true
|
||||
lsp = true,
|
||||
},
|
||||
})
|
||||
end,
|
||||
|
@ -4,13 +4,13 @@ return {
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
config = function()
|
||||
require("lint").linters_by_ft = {
|
||||
markdown = {"proselint"}
|
||||
markdown = { "proselint" },
|
||||
}
|
||||
vim.api.nvim_create_autocmd({ "BufWritePost", "BufEnter" }, {
|
||||
callback = function()
|
||||
require("lint").try_lint()
|
||||
end
|
||||
end,
|
||||
})
|
||||
end
|
||||
}
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -39,7 +39,23 @@ return {
|
||||
"windwp/nvim-ts-autotag",
|
||||
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
config = true,
|
||||
opts = {
|
||||
filetypes = {
|
||||
"astro",
|
||||
"glimmer",
|
||||
"handlebars",
|
||||
"html",
|
||||
"javascript",
|
||||
"jsx",
|
||||
"php",
|
||||
"rescript",
|
||||
"svelte",
|
||||
"tsx",
|
||||
"typescript",
|
||||
"vue",
|
||||
"xml",
|
||||
},
|
||||
},
|
||||
ft = {
|
||||
"astro",
|
||||
"glimmer",
|
||||
@ -47,7 +63,6 @@ return {
|
||||
"html",
|
||||
"javascript",
|
||||
"jsx",
|
||||
"markdown",
|
||||
"php",
|
||||
"rescript",
|
||||
"svelte",
|
||||
@ -105,7 +120,7 @@ return {
|
||||
"pfeiferj/nvim-hurl",
|
||||
config = true,
|
||||
},
|
||||
"JoosepAlviste/nvim-ts-context-commentstring"
|
||||
"JoosepAlviste/nvim-ts-context-commentstring",
|
||||
},
|
||||
config = function()
|
||||
local treesitter_dir = vim.fn.stdpath("data") .. "/treesitter"
|
||||
@ -160,8 +175,8 @@ return {
|
||||
enable = true,
|
||||
},
|
||||
context_commentstring = {
|
||||
enable = true
|
||||
}
|
||||
enable = true,
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user