disable stuff

This commit is contained in:
Kasper Juul Hermansen 2023-02-04 16:46:27 +01:00
parent 057b357f05
commit 4027ba20a2
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
9 changed files with 30 additions and 46 deletions

View File

@ -1,4 +0,0 @@
return {
fg = "#abb2bf",
bg = "#1e222a",
}

View File

@ -1,13 +0,0 @@
return function(hl) -- or a function that returns a new table of colors to set
local C = require "default_theme.colors"
hl.Normal = { fg = C.fg, bg = C.bg }
-- New approach instead of diagnostic_style
hl.DiagnosticError.italic = true
hl.DiagnosticHint.italic = true
hl.DiagnosticInfo.italic = true
hl.DiagnosticWarn.italic = true
return hl
end

View File

@ -1,21 +0,0 @@
return {
aerial = true,
beacon = false,
bufferline = true,
cmp = true,
dashboard = true,
highlighturl = true,
hop = false,
indent_blankline = true,
lightspeed = false,
["neo-tree"] = true,
notify = true,
["nvim-tree"] = false,
["nvim-web-devicons"] = true,
rainbow = true,
symbols_outline = false,
telescope = true,
treesitter = true,
vimwiki = false,
["which-key"] = true,
}

4
heirline/attributes.lua Normal file
View File

@ -0,0 +1,4 @@
return {
-- styling choices for each heirline element, check possible attributes with `:h attr-list`
git_branch = { bold = true }, -- bold the git branch statusline component
}

4
heirline/colors.lua Normal file
View File

@ -0,0 +1,4 @@
return function(colors)
colors.git_branch_fg = astronvim.get_hlgroup("Conditional").fg
return colors
end

View File

@ -0,0 +1,8 @@
return {
breadcrumbs = false, -- LSP symbols in the breadcrumbs
file_icon = {
winbar = false, -- Filetype icon in the winbar inactive windows
statusline = true, -- Filetype icon in the statusline
tabline = true, -- Filetype icon in the tabline
},
}

5
heirline/separators.lua Normal file
View File

@ -0,0 +1,5 @@
return {
breadcrumbs = " > ",
tab = { "", "" },
}

View File

@ -17,14 +17,14 @@ return {
autoformat_enabled = true, -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled)
icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
ui_notifications_enabled = true, -- disable notifications when toggling UI elements
heirline_bufferline = true, -- enable new heirline based bufferline (requires :PackerSync after changing)
--heirline_bufferline = true, -- enable new heirline based bufferline (requires :PackerSync after changing)
vim_markdown_folding_disabled = 1,
vim_markdown_conceal = 1,
tex_conceal = "",
vim_markdown_math = 1,
vim_markdown_frontmatter = 1,
vim_markdown_toml_frontmatter = 1,
vim_markdown_json_frontmatter = 1,
--vim_markdown_folding_disabled = 1,
--vim_markdown_conceal = 1,
--tex_conceal = "",
--vim_markdown_math = 1,
--vim_markdown_frontmatter = 1,
--vim_markdown_toml_frontmatter = 1,
--vim_markdown_json_frontmatter = 1,
},
}

View File

@ -3,6 +3,7 @@ return {
--channel = "stable", -- "stable" or "nightly"
channel = "nightly", -- "stable" or "nightly"
--version = "v2.11.7", -- "latest", tag name, or regex search like "v1.*" to only do updates before v2 (STABLE ONLY)
--version="latest",
branch = "v3", -- branch name (NIGHTLY ONLY)
--commit = nil, -- commit hash (NIGHTLY ONLY)
pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only)