chore: update theme
This commit is contained in:
parent
9cdf9f74fa
commit
4253151738
10 changed files with 246 additions and 19 deletions
219
colors/oldbook-lsp.vim
Normal file
219
colors/oldbook-lsp.vim
Normal file
|
|
@ -0,0 +1,219 @@
|
||||||
|
" Vim Colorscheme: oldbook
|
||||||
|
" Maintainer: Konstantin Gorodinskii, adapted for Neovim
|
||||||
|
" Description: A light theme inspired by aged paper and faded ink, with TreeSitter and LSP support
|
||||||
|
|
||||||
|
" --- Setup ---
|
||||||
|
set background=light
|
||||||
|
hi clear
|
||||||
|
if exists("syntax_on")
|
||||||
|
syntax reset
|
||||||
|
endif
|
||||||
|
let g:colors_name = "oldbook"
|
||||||
|
|
||||||
|
" --- Palette ---
|
||||||
|
" Inspired by aged paper and various shades of faded ink
|
||||||
|
let s:paper = "#fcf5e6" " Neutral Beige Paper
|
||||||
|
let s:ink = "#585040" " Main foreground (Standard Ink)
|
||||||
|
let s:light_ink = "#9a8f7d" " Faded Ink for comments, line numbers
|
||||||
|
let s:keyword_ink = "#70553a" " Warm, sepia ink for keywords
|
||||||
|
let s:function_ink = "#5e6a75" " Cool, slate ink for functions & types
|
||||||
|
let s:literal_ink = "#72785b" " Earthy, faded green for strings & numbers
|
||||||
|
let s:selection = "#e4d8ba" " Subtle, low-contrast selection
|
||||||
|
let s:line_hl = "#f0e8d9" " Barely-there line highlight
|
||||||
|
let s:scope_hl = "#d8d0c3" " Scope highlight
|
||||||
|
let s:popup_bg = "#ede4d2" " Popup menu background
|
||||||
|
let s:error_curl = "#c48484" " Muted red for error underlining
|
||||||
|
|
||||||
|
" --- Helper for Highlighting ---
|
||||||
|
function! s:HL(group, guifg, guibg, gui, guisp)
|
||||||
|
let cmd = "hi " . a:group
|
||||||
|
if a:guifg != "" && a:guifg != "NONE"
|
||||||
|
let cmd .= " guifg=" . a:guifg
|
||||||
|
else
|
||||||
|
let cmd .= " guifg=NONE"
|
||||||
|
endif
|
||||||
|
if a:guibg != "" && a:guibg != "NONE"
|
||||||
|
let cmd .= " guibg=" . a:guibg
|
||||||
|
else
|
||||||
|
let cmd .= " guibg=NONE"
|
||||||
|
endif
|
||||||
|
if a:gui != "" && a:gui != "NONE"
|
||||||
|
let cmd .= " gui=" . a:gui . " cterm=" . a:gui . " term=" . a:gui
|
||||||
|
else
|
||||||
|
let cmd .= " gui=NONE cterm=NONE term=NONE"
|
||||||
|
endif
|
||||||
|
if a:guisp != "" && a:guisp != "NONE"
|
||||||
|
let cmd .= " guisp=" . a:guisp
|
||||||
|
endif
|
||||||
|
execute cmd
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
" --- UI Highlighting ---
|
||||||
|
call s:HL("Normal", s:ink, s:paper, "NONE", "NONE")
|
||||||
|
call s:HL("NormalNC", s:light_ink, s:paper, "NONE", "NONE")
|
||||||
|
call s:HL("Cursor", s:paper, s:ink, "NONE", "NONE")
|
||||||
|
call s:HL("CursorLine", "NONE", s:line_hl, "NONE", "NONE")
|
||||||
|
call s:HL("Visual", s:ink, s:selection, "NONE", "NONE")
|
||||||
|
call s:HL("ColorColumn", "NONE", s:line_hl, "NONE", "NONE")
|
||||||
|
|
||||||
|
" Gutters and Splits
|
||||||
|
call s:HL("LineNr", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("CursorLineNr", s:ink, s:line_hl, "bold", "NONE")
|
||||||
|
call s:HL("CursorLineSign", s:ink, s:line_hl, "bold", "NONE")
|
||||||
|
call s:HL("SignColumn", s:light_ink, s:paper, "NONE", "NONE")
|
||||||
|
call s:HL("Folded", s:light_ink, s:line_hl, "italic", "NONE")
|
||||||
|
call s:HL("FoldColumn", s:light_ink, s:paper, "NONE", "NONE")
|
||||||
|
call s:HL("VertSplit", s:light_ink, s:paper, "NONE", "NONE")
|
||||||
|
call s:HL("WinSeparator", s:light_ink, s:paper, "NONE", "NONE")
|
||||||
|
|
||||||
|
" Status & Tab Line
|
||||||
|
call s:HL("StatusLine", s:paper, s:ink, "NONE", "NONE")
|
||||||
|
call s:HL("StatusLineNC", s:light_ink, s:paper, "NONE", "NONE")
|
||||||
|
call s:HL("TabLine", s:light_ink, s:line_hl, "NONE", "NONE")
|
||||||
|
call s:HL("TabLineFill", "NONE", s:line_hl, "NONE", "NONE")
|
||||||
|
call s:HL("TabLineSel", s:ink, s:selection, "bold", "NONE")
|
||||||
|
|
||||||
|
" Pop-up Menu and Floating Windows
|
||||||
|
call s:HL("Pmenu", s:ink, s:popup_bg, "NONE", "NONE")
|
||||||
|
call s:HL("PmenuSel", s:ink, s:selection, "bold", "NONE")
|
||||||
|
call s:HL("PmenuSbar", "NONE", s:line_hl, "NONE", "NONE")
|
||||||
|
call s:HL("PmenuThumb", "NONE", s:selection, "NONE", "NONE")
|
||||||
|
call s:HL("NormalFloat", s:ink, s:popup_bg, "NONE", "NONE")
|
||||||
|
call s:HL("FloatBorder", s:light_ink, s:popup_bg, "NONE", "NONE")
|
||||||
|
call s:HL("TelescopeNormal", s:ink, s:popup_bg, "NONE", "NONE")
|
||||||
|
call s:HL("TelescopeBorder", s:light_ink, s:popup_bg, "NONE", "NONE")
|
||||||
|
|
||||||
|
" LuaLine
|
||||||
|
call s:HL("StatusLine", s:ink, s:line_hl, "NONE", "NONE")
|
||||||
|
call s:HL("LuaLineDiffAdd", s:literal_ink, s:line_hl, "NONE", "NONE")
|
||||||
|
call s:HL("LuaLineDiffChange", s:keyword_ink, s:line_hl, "NONE", "NONE")
|
||||||
|
call s:HL("LuaLineDiffRemove", s:error_curl, s:line_hl, "NONE", "NONE")
|
||||||
|
|
||||||
|
" Indent-Blankline
|
||||||
|
call s:HL("IblIndent", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("IblScope", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("IblWhitespace", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
|
||||||
|
" General
|
||||||
|
call s:HL("Directory", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
call s:HL("Title", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
call s:HL("Question", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
call s:HL("MatchParen", "NONE", s:selection, "bold", "NONE")
|
||||||
|
call s:HL("Search", s:ink, s:selection, "NONE", "NONE")
|
||||||
|
call s:HL("IncSearch", s:paper, s:keyword_ink, "bold", "NONE")
|
||||||
|
call s:HL("WildMenu", s:paper, s:ink, "bold", "NONE")
|
||||||
|
call s:HL("NonText", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("SpecialKey", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
|
||||||
|
" --- Syntax Highlighting ---
|
||||||
|
call s:HL("Comment", s:light_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("Todo", s:paper, s:keyword_ink, "bold", "NONE")
|
||||||
|
|
||||||
|
" Keywords and Statements
|
||||||
|
call s:HL("Statement", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
hi! link Keyword Statement
|
||||||
|
hi! link Operator Statement
|
||||||
|
hi! link Conditional Statement
|
||||||
|
hi! link Repeat Statement
|
||||||
|
hi! link Label Statement
|
||||||
|
|
||||||
|
" Functions and Types
|
||||||
|
call s:HL("Function", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("Type", s:function_ink, "NONE", "italic", "NONE")
|
||||||
|
hi! link StorageClass Type
|
||||||
|
hi! link Structure Type
|
||||||
|
hi! link Typedef Type
|
||||||
|
|
||||||
|
" Literals
|
||||||
|
call s:HL("Constant", s:literal_ink, "NONE", "NONE", "NONE")
|
||||||
|
hi! link String Constant
|
||||||
|
hi! link Character Constant
|
||||||
|
hi! link Number Constant
|
||||||
|
hi! link Boolean Constant
|
||||||
|
hi! link Float Constant
|
||||||
|
|
||||||
|
" Other
|
||||||
|
call s:HL("Identifier", s:ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("PreProc", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("Special", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("Underlined", s:ink, "NONE", "underline", "NONE")
|
||||||
|
|
||||||
|
" Errors and Diffs
|
||||||
|
call s:HL("Error", s:ink, s:selection, "bold", "NONE")
|
||||||
|
call s:HL("ErrorMsg", s:paper, s:error_curl, "bold", "NONE")
|
||||||
|
call s:HL("WarningMsg", s:paper, s:keyword_ink, "bold", "NONE")
|
||||||
|
call s:HL("DiffAdd", "NONE", "#e1e9e1", "NONE", "NONE")
|
||||||
|
call s:HL("DiffDelete", "NONE", "#e9e1e1", "NONE", "NONE")
|
||||||
|
call s:HL("DiffChange", "NONE", "#dfe2e9", "NONE", "NONE")
|
||||||
|
call s:HL("DiffText", s:ink, "#cdd7e9", "bold", "NONE")
|
||||||
|
|
||||||
|
" --- Avante Diff ---
|
||||||
|
call s:HL("AvanteToBeDeleted", "strikethrough", "#e9e1e1", "strikethrough", "strikethrough")
|
||||||
|
call s:HL("AvanteToBeDeletedWOStrikethrough", "NONE", "#e9e1e1", "NONE", "NONE")
|
||||||
|
|
||||||
|
" --- TreeSitter Highlighting ---
|
||||||
|
call s:HL("@variable", s:ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@variable.builtin", s:keyword_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@variable.parameter", s:ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@variable.member", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@variable.function.go", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@module", s:ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@module.builtin", s:ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@function", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@function.builtin", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@function.call", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@function.method", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@function.method.call", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@constructor", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@keyword", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
call s:HL("@keyword.function", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
call s:HL("@keyword.operator", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
call s:HL("@keyword.return", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
call s:HL("@string", s:literal_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@string.escape", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@string.regexp", s:literal_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@string.special", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@number", s:literal_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@boolean", s:literal_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@constant", s:literal_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@constant.builtin", s:literal_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@type", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@type.builtin", s:function_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@type.definition", s:function_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@property", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@field", s:ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@parameter", s:ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@comment", s:light_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@punctuation", s:ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@operator", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@namespace", s:function_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("@tag", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@tag.attribute", s:ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@tag.delimiter", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@attribute", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("@label", s:keyword_ink, "NONE", "bold", "NONE")
|
||||||
|
|
||||||
|
" --- LSP Diagnostics ---
|
||||||
|
call s:HL("DiagnosticError", s:error_curl, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("DiagnosticWarn", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("DiagnosticInfo", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("DiagnosticHint", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("DiagnosticVirtualTextError", s:error_curl, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("DiagnosticVirtualTextWarn", s:keyword_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("DiagnosticVirtualTextInfo", s:function_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("DiagnosticVirtualTextHint", s:light_ink, "NONE", "italic", "NONE")
|
||||||
|
call s:HL("DiagnosticUnderlineError", "NONE", "NONE", "underline", s:error_curl)
|
||||||
|
call s:HL("DiagnosticUnderlineWarn", "NONE", "NONE", "underline", s:keyword_ink)
|
||||||
|
call s:HL("DiagnosticUnderlineInfo", "NONE", "NONE", "underline", s:function_ink)
|
||||||
|
call s:HL("DiagnosticUnderlineHint", "NONE", "NONE", "underline", s:light_ink)
|
||||||
|
call s:HL("DiagnosticSignError", s:error_curl, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("DiagnosticSignWarn", s:keyword_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("DiagnosticSignInfo", s:function_ink, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("DiagnosticSignHint", s:light_ink, "NONE", "NONE", "NONE")
|
||||||
|
|
||||||
|
" --- Indent Blankline ---
|
||||||
|
call s:HL("IblIndent", s:line_hl, "NONE", "NONE", "NONE")
|
||||||
|
call s:HL("IblScope", s:scope_hl, "NONE", "NONE", "NONE")
|
||||||
|
|
||||||
|
" --- Cleanup ---
|
||||||
|
delfunction s:HL
|
||||||
5
init.lua
5
init.lua
|
|
@ -4,7 +4,7 @@ require("config.autocmds")
|
||||||
|
|
||||||
-- Boostrap lazy.nvim
|
-- Boostrap lazy.nvim
|
||||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
if not vim.loop.fs_stat(lazypath) then
|
if not vim.uv.fs_stat(lazypath) then
|
||||||
vim.fn.system({
|
vim.fn.system({
|
||||||
"git",
|
"git",
|
||||||
"clone",
|
"clone",
|
||||||
|
|
@ -21,6 +21,3 @@ require("lazy").setup({ import = "custom/plugins" }, {
|
||||||
notify = false,
|
notify = false,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Modify Comment highlight group to remove italics
|
|
||||||
vim.cmd([[hi Comment cterm=NONE gui=NONE]])
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ opt.expandtab = false
|
||||||
opt.smartindent = true
|
opt.smartindent = true
|
||||||
|
|
||||||
-- Highlight cursor line
|
-- Highlight cursor line
|
||||||
vim.opt.cursorline = true
|
opt.cursorline = true
|
||||||
vim.api.nvim_set_hl(0, "CursorLine", { bg = "#ede7da" })
|
vim.api.nvim_set_hl(0, "CursorLine", { bg = "#ede7da" })
|
||||||
|
|
||||||
-- Use line wrapping
|
-- Use line wrapping
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ require("lualine").setup({
|
||||||
lualine_a = { "mode" },
|
lualine_a = { "mode" },
|
||||||
lualine_b = { { 'branch', icon = { '', align = 'right' } }, "diff", "diagnostics" },
|
lualine_b = { { 'branch', icon = { '', align = 'right' } }, "diff", "diagnostics" },
|
||||||
lualine_c = { { "filename", path = 1 } },
|
lualine_c = { { "filename", path = 1 } },
|
||||||
lualine_x = { "filetype" },
|
lualine_x = { { "filetype", color = { bg = 'none' } } },
|
||||||
lualine_y = {},
|
lualine_y = {},
|
||||||
lualine_z = { { "location", color = { bg = 'none' } } },
|
lualine_z = { { "location", color = { bg = 'none' } } },
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,12 @@ return {
|
||||||
behaviour = {
|
behaviour = {
|
||||||
auto_suggestions = false,
|
auto_suggestions = false,
|
||||||
},
|
},
|
||||||
|
highlights = {
|
||||||
|
diff = {
|
||||||
|
current = "DiffText",
|
||||||
|
incoming = "DiffAdd",
|
||||||
|
},
|
||||||
|
},
|
||||||
windows = {
|
windows = {
|
||||||
width = 45,
|
width = 45,
|
||||||
sidebar_header = {
|
sidebar_header = {
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ return {
|
||||||
-- vim.cmd("hi Normal guibg=NONE")
|
-- vim.cmd("hi Normal guibg=NONE")
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"morhetz/gruvbox",
|
"morhetz/gruvbox",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
|
|
@ -96,7 +96,7 @@ return {
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
init = function()
|
init = function()
|
||||||
vim.o.background = "light"
|
vim.o.background = "light"
|
||||||
vim.cmd("colorscheme oldbook")
|
vim.cmd("colorscheme oldbook-lsp")
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -37,11 +37,12 @@ return {
|
||||||
|
|
||||||
-- Add keybinding for manual formatting
|
-- Add keybinding for manual formatting
|
||||||
vim.keymap.set({ "n", "v" }, "<leader><leader>", function()
|
vim.keymap.set({ "n", "v" }, "<leader><leader>", function()
|
||||||
require("conform").format({
|
vim.lsp.buf.format()
|
||||||
lsp_fallback = true,
|
-- require("conform").format({
|
||||||
async = false,
|
-- lsp_fallback = true,
|
||||||
timeout_ms = 1000,
|
-- async = false,
|
||||||
})
|
-- timeout_ms = 1000,
|
||||||
|
-- })
|
||||||
end, { desc = "Format file or range (in visual mode)" })
|
end, { desc = "Format file or range (in visual mode)" })
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,15 @@ return {
|
||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
event = { "BufReadPost", "BufNewFile", "BufWritePre", "VeryLazy" },
|
event = { "BufReadPost", "BufNewFile", "BufWritePre", "VeryLazy" },
|
||||||
opts = {
|
opts = {
|
||||||
|
current_line_blame = true,
|
||||||
|
current_line_blame_opts = {
|
||||||
|
virt_text = true,
|
||||||
|
virt_text_pos = 'eol', -- 'eol' | 'overlay' | 'right_align'
|
||||||
|
delay = 0,
|
||||||
|
ignore_whitespace = true,
|
||||||
|
virt_text_priority = 100,
|
||||||
|
use_focus = true,
|
||||||
|
},
|
||||||
signs = {
|
signs = {
|
||||||
add = { text = "▎" },
|
add = { text = "▎" },
|
||||||
change = { text = "▎" },
|
change = { text = "▎" },
|
||||||
|
|
|
||||||
|
|
@ -2,21 +2,16 @@ return {
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
"lukas-reineke/indent-blankline.nvim",
|
||||||
main = "ibl",
|
main = "ibl",
|
||||||
config = function()
|
config = function()
|
||||||
vim.api.nvim_set_hl(0, "IblIndentLightGray", { fg = "#eae6d9" })
|
|
||||||
vim.api.nvim_set_hl(0, "IblIndentScopeLightGray", { fg = "#dfd9cc" })
|
|
||||||
|
|
||||||
require("ibl").setup({
|
require("ibl").setup({
|
||||||
debounce = 100,
|
debounce = 100,
|
||||||
indent = {
|
indent = {
|
||||||
char = "▏",
|
char = "▏",
|
||||||
tab_char = "▏",
|
tab_char = "▏",
|
||||||
highlight = { "IblIndentLightGray" },
|
|
||||||
},
|
},
|
||||||
scope = {
|
scope = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
show_start = false,
|
show_start = false,
|
||||||
show_end = false,
|
show_end = false,
|
||||||
highlight = { "IblIndentLightGray", "IblIndentScopeLightGray" },
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ return {
|
||||||
opts = {
|
opts = {
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
additional_vim_regex_highlighting = { "php", "twig" },
|
additional_vim_regex_highlighting = false,
|
||||||
},
|
},
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue