fix(style/format): further code formating
This commit is contained in:
parent
9706834ddb
commit
ebe528abfa
37
init.lua
37
init.lua
@ -293,7 +293,8 @@ local config = {
|
|||||||
-- {
|
-- {
|
||||||
-- "L3MON4D3/LuaSnip",
|
-- "L3MON4D3/LuaSnip",
|
||||||
-- config = function(plugin, opts)
|
-- config = function(plugin, opts)
|
||||||
-- require "plugins.configs.luasnip"(plugin, opts) -- include the default astronvim config that calls the setup call
|
-- -- include the default astronvim config that calls the setup call
|
||||||
|
-- require "plugins.configs.luasnip"(plugin, opts)
|
||||||
-- -- add more custom luasnip configuration such as filetype extend or custom snippets
|
-- -- add more custom luasnip configuration such as filetype extend or custom snippets
|
||||||
-- local luasnip = require "luasnip"
|
-- local luasnip = require "luasnip"
|
||||||
-- luasnip.filetype_extend("javascript", { "javascriptreact" })
|
-- luasnip.filetype_extend("javascript", { "javascriptreact" })
|
||||||
@ -302,7 +303,8 @@ local config = {
|
|||||||
-- {
|
-- {
|
||||||
-- "windwp/nvim-autopairs",
|
-- "windwp/nvim-autopairs",
|
||||||
-- config = function(plugin, opts)
|
-- config = function(plugin, opts)
|
||||||
-- require "plugins.configs.nvim-autopairs"(plugin, opts) -- include the default astronvim config that calls the setup call
|
-- -- include the default astronvim config that calls the setup call
|
||||||
|
-- require "plugins.configs.nvim-autopairs"(plugin, opts)
|
||||||
-- -- add more custom autopairs configuration such as custom rules
|
-- -- add more custom autopairs configuration such as custom rules
|
||||||
-- local npairs = require "nvim-autopairs"
|
-- local npairs = require "nvim-autopairs"
|
||||||
-- local Rule = require "nvim-autopairs.rule"
|
-- local Rule = require "nvim-autopairs.rule"
|
||||||
@ -477,16 +479,27 @@ local config = {
|
|||||||
-- * keyword: highlights of the keyword
|
-- * keyword: highlights of the keyword
|
||||||
-- * after: highlights after the keyword (todo text)
|
-- * after: highlights after the keyword (todo text)
|
||||||
highlight = {
|
highlight = {
|
||||||
multiline = true, -- enable multine todo comments
|
-- enable multine todo comments
|
||||||
multiline_pattern = "^.", -- lua pattern to match the next multiline from the start of the matched keyword
|
multiline = true,
|
||||||
multiline_context = 10, -- extra lines that will be re-evaluated when changing a line
|
-- lua pattern to match the next multiline from the start of the matched keyword
|
||||||
before = "", -- "fg" or "bg" or empty
|
multiline_pattern = "^.",
|
||||||
keyword = "wide", -- "fg", "bg", "wide", "wide_bg", "wide_fg" or empty. (wide and wide_bg is the same as bg, but will also highlight surrounding characters, wide_fg acts accordingly but with fg)
|
-- extra lines that will be re-evaluated when changing a line
|
||||||
after = "fg", -- "fg" or "bg" or empty
|
multiline_context = 10,
|
||||||
pattern = [[.*<(KEYWORDS)\s*:]], -- pattern or table of patterns, used for highlighting (vim regex)
|
-- "fg" or "bg" or empty
|
||||||
comments_only = true, -- uses treesitter to match keywords in comments only
|
before = "",
|
||||||
max_line_len = 400, -- ignore lines longer than this
|
-- "fg", "bg", "wide", "wide_bg", "wide_fg" or empty. (wide and wide_bg is the same as bg,
|
||||||
exclude = {}, -- list of file types to exclude highlighting
|
-- but will also highlight surrounding characters, wide_fg acts accordingly but with fg)
|
||||||
|
keyword = "wide",
|
||||||
|
-- "fg" or "bg" or empty
|
||||||
|
after = "fg",
|
||||||
|
-- pattern or table of patterns, used for highlighting (vim regex)
|
||||||
|
pattern = [[.*<(KEYWORDS)\s*:]],
|
||||||
|
-- uses treesitter to match keywords in comments only
|
||||||
|
comments_only = true,
|
||||||
|
-- ignore lines longer than this
|
||||||
|
max_line_len = 400,
|
||||||
|
-- list of file types to exclude highlighting
|
||||||
|
exclude = {},
|
||||||
},
|
},
|
||||||
-- list of named colors where we try to extract the guifg from the
|
-- list of named colors where we try to extract the guifg from the
|
||||||
-- list of highlight groups or use the hex color if hl not found as a fallback
|
-- list of highlight groups or use the hex color if hl not found as a fallback
|
||||||
|
Loading…
x
Reference in New Issue
Block a user