Compare commits
8
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4ad52f1b1 | ||
|
|
5b0b6f32c5 | ||
|
|
acf072e634 | ||
|
|
a775122059 | ||
|
|
91773e0a00 | ||
|
|
ee4515da26 | ||
|
|
4c2f8f17d3 | ||
|
|
2fbd1332e5 |
@@ -0,0 +1,29 @@
|
|||||||
|
function! neoformat#formatters#powershell#enabled() abort
|
||||||
|
return ['pwshfmt']
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! neoformat#formatters#powershell#pwshfmt() abort
|
||||||
|
"if has('win32') || has('win64')
|
||||||
|
" let l:args = [
|
||||||
|
" \ '-NoProfile',
|
||||||
|
" \ '-Command',
|
||||||
|
" \ 'Import-Module PSScriptAnalyzer; Invoke-Formatter -ScriptDefinition (\$input | Out-String)',
|
||||||
|
" \ ]
|
||||||
|
"else
|
||||||
|
" let l:args = [
|
||||||
|
" \ '-NoProfile',
|
||||||
|
" \ '-Command',
|
||||||
|
" \ '"Import-Module (Resolve-Path \"/opt/powershell-editor-services/PSScriptAnalyzer/*/PSScriptAnalyzer.psd1\" | Select-Object -ExpandProperty Path); Invoke-Formatter -ScriptDefinition (\$input | Out-String)"'
|
||||||
|
" \ ]
|
||||||
|
"endif
|
||||||
|
"
|
||||||
|
return {
|
||||||
|
\ 'exe': 'pwsh',
|
||||||
|
\ 'args': [
|
||||||
|
\ '-NoProfile',
|
||||||
|
\ '-Command',
|
||||||
|
\ 'Import-Module PSScriptAnalyzer; Invoke-Formatter -ScriptDefinition ($input | Out-String)'
|
||||||
|
\ ],
|
||||||
|
\ 'stdin': 1,
|
||||||
|
\ }
|
||||||
|
endfunction
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
function! neoformat#formatters#ps1#enabled() abort
|
||||||
|
return ['pwshfmt']
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! neoformat#formatters#ps1#pwshfmt() abort
|
||||||
|
return {
|
||||||
|
\ 'exe': 'pwsh',
|
||||||
|
\ 'args': ['-NoProfile', '-Command',
|
||||||
|
\ '"Import-Module (Resolve-Path \"/opt/powershell-editor-services/PSScriptAnalyzer/*/PSScriptAnalyzer.psd1\" | Select-Object -ExpandProperty Path); Invoke-Formatter -ScriptDefinition (\$input | Out-String)"'],
|
||||||
|
\ 'stdin': 1
|
||||||
|
\ }
|
||||||
|
endfunction
|
||||||
@@ -0,0 +1,432 @@
|
|||||||
|
-- Generated by zshell. Material 3 based Neovim colorscheme.
|
||||||
|
-- This file is a Jinja template rendered by zshell.
|
||||||
|
|
||||||
|
vim.g.colors_name = nil
|
||||||
|
vim.o.background = "dark"
|
||||||
|
|
||||||
|
vim.cmd("highlight clear")
|
||||||
|
if vim.fn.exists("syntax_on") == 1 then
|
||||||
|
vim.cmd("syntax reset")
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.g.colors_name = "zshell"
|
||||||
|
vim.o.termguicolors = true
|
||||||
|
|
||||||
|
local set = vim.api.nvim_set_hl
|
||||||
|
local function hl(group, opts)
|
||||||
|
set(0, group, opts)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function link(from, to)
|
||||||
|
hl(from, { link = to })
|
||||||
|
end
|
||||||
|
|
||||||
|
local is_light = "dark" == "light"
|
||||||
|
local function pick(light, dark)
|
||||||
|
return is_light and light or dark
|
||||||
|
end
|
||||||
|
|
||||||
|
local c = {
|
||||||
|
bg = "#121318",
|
||||||
|
bg_alt = "#1A1B20",
|
||||||
|
bg_float = "#1E1F25",
|
||||||
|
bg_popup = "#292A2F",
|
||||||
|
bg_cursorline = pick("#292A2F", "#33343A"),
|
||||||
|
bg_fold = "#1A1B20",
|
||||||
|
bg_visual = "#3E4867",
|
||||||
|
bg_search = pick("#C177BE", "#3E4867"),
|
||||||
|
bg_incsearch = "#718EDF",
|
||||||
|
bg_selection = "#718EDF",
|
||||||
|
bg_statusline = pick("#292A2F", "#1E1F25"),
|
||||||
|
bg_statusline_nc = "#1A1B20",
|
||||||
|
bg_tabline = "#1A1B20",
|
||||||
|
bg_tabsel = "#292A2F",
|
||||||
|
|
||||||
|
fg = "#E3E2E9",
|
||||||
|
fg_muted = "#C4C6D3",
|
||||||
|
fg_subtle = "#8E909C",
|
||||||
|
fg_comment = pick("#8E909C", "#444651"),
|
||||||
|
fg_strong = pick("#1A1B1F", "#F2F2F7"),
|
||||||
|
fg_on_soft = pick("#17181C", "#F4F4F8"),
|
||||||
|
|
||||||
|
border = "#444651",
|
||||||
|
accent = "#B3C5FF",
|
||||||
|
accent_container = "#718EDF",
|
||||||
|
accent_fg = "#001748",
|
||||||
|
accent_solid_fg = "#002B75",
|
||||||
|
|
||||||
|
secondary = "#BBC5EA",
|
||||||
|
secondary_container = "#3E4867",
|
||||||
|
secondary_fg = "#ADB7DB",
|
||||||
|
secondary_solid_fg = "#252F4D",
|
||||||
|
|
||||||
|
tertiary = "#FCACF7",
|
||||||
|
tertiary_container = "#C177BE",
|
||||||
|
tertiary_fg = "#360039",
|
||||||
|
tertiary_solid_fg = "#531356",
|
||||||
|
|
||||||
|
error = "#FFB4AB",
|
||||||
|
error_container = "#93000A",
|
||||||
|
error_fg = "#FFDAD6",
|
||||||
|
error_solid_fg = "#690005",
|
||||||
|
|
||||||
|
ok = "#44DEF5",
|
||||||
|
warn = "#FFDCF2",
|
||||||
|
info = "#90ACD5",
|
||||||
|
hint = "#9BCEFE",
|
||||||
|
add = "#44DEF5",
|
||||||
|
change = "#90ACD5",
|
||||||
|
delete = "#947DFF",
|
||||||
|
|
||||||
|
cursor_fg = "#002B75",
|
||||||
|
cursor_bg = "#B3C5FF",
|
||||||
|
match_bg = "#C177BE",
|
||||||
|
match_fg = "#360039",
|
||||||
|
todo_bg = "#C177BE",
|
||||||
|
todo_fg = "#360039",
|
||||||
|
|
||||||
|
-- Syntax accents must stay dynamic. These come from your generated palette
|
||||||
|
-- instead of fixed hex values, so foregrounds change with the wallpaper too.
|
||||||
|
code_keyword = "#A6A3EE",
|
||||||
|
code_func = "#9BCEFE",
|
||||||
|
code_string = "#44DEF5",
|
||||||
|
code_number = "#FFDCF2",
|
||||||
|
code_const = "#947DFF",
|
||||||
|
code_type = "#B3C5FF",
|
||||||
|
code_special = "#FCACF7",
|
||||||
|
code_preproc = "#BBC5EA",
|
||||||
|
code_builtin = "#B3C5FF",
|
||||||
|
code_param = "#FFDCF2",
|
||||||
|
code_field = "#BBC5EA",
|
||||||
|
code_namespace = "#FCACF7",
|
||||||
|
code_operator = pick("#B3C5FF", "#BBC5EA"),
|
||||||
|
|
||||||
|
line_current = pick("#232428", "#E7E7EC"),
|
||||||
|
ref_bg = pick("#33343A", "#292A2F"),
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Core UI -------------------------------------------------------------------
|
||||||
|
hl("Normal", { fg = c.fg, bg = c.bg })
|
||||||
|
hl("NormalNC", { fg = c.fg, bg = c.bg })
|
||||||
|
hl("NormalFloat", { fg = c.fg, bg = c.bg_float })
|
||||||
|
hl("FloatBorder", { fg = c.border, bg = c.bg_float })
|
||||||
|
hl("FloatTitle", { fg = c.accent, bg = c.bg_float, bold = true })
|
||||||
|
hl("FloatFooter", { fg = c.fg_muted, bg = c.bg_float })
|
||||||
|
hl("WinSeparator", { fg = c.border, bg = "NONE" })
|
||||||
|
link("VertSplit", "WinSeparator")
|
||||||
|
|
||||||
|
hl("Cursor", { fg = c.cursor_fg, bg = c.cursor_bg })
|
||||||
|
link("lCursor", "Cursor")
|
||||||
|
link("CursorIM", "Cursor")
|
||||||
|
link("TermCursor", "Cursor")
|
||||||
|
|
||||||
|
hl("CursorLine", { bg = c.bg_cursorline })
|
||||||
|
hl("CursorColumn", { bg = c.bg_cursorline })
|
||||||
|
hl("ColorColumn", { bg = c.bg_alt })
|
||||||
|
|
||||||
|
hl("LineNr", { fg = c.fg_subtle, bg = c.bg })
|
||||||
|
hl("LineNrAbove", { fg = c.fg_subtle, bg = c.bg })
|
||||||
|
hl("LineNrBelow", { fg = c.fg_subtle, bg = c.bg })
|
||||||
|
hl("CursorLineNr", { fg = c.line_current, bg = c.bg_cursorline, bold = true })
|
||||||
|
|
||||||
|
hl("SignColumn", { fg = c.fg_muted, bg = c.bg })
|
||||||
|
hl("FoldColumn", { fg = c.fg_muted, bg = c.bg })
|
||||||
|
hl("Folded", { fg = c.fg_muted, bg = c.bg_fold, italic = true })
|
||||||
|
|
||||||
|
hl("NonText", { fg = c.border, bg = "NONE" })
|
||||||
|
link("EndOfBuffer", "NonText")
|
||||||
|
hl("Whitespace", { fg = c.border, bg = "NONE" })
|
||||||
|
hl("SpecialKey", { fg = c.border, bg = "NONE" })
|
||||||
|
|
||||||
|
hl("Visual", { bg = c.bg_visual })
|
||||||
|
link("VisualNOS", "Visual")
|
||||||
|
hl("Search", { fg = c.tertiary_fg, bg = c.bg_search })
|
||||||
|
hl("CurSearch", { fg = c.accent_fg, bg = c.bg_incsearch, bold = true })
|
||||||
|
link("IncSearch", "CurSearch")
|
||||||
|
hl("Substitute", { fg = c.accent_fg, bg = c.bg_incsearch, bold = true })
|
||||||
|
hl("MatchParen", { fg = c.match_fg, bg = c.match_bg, bold = true })
|
||||||
|
|
||||||
|
hl("Pmenu", { fg = c.fg, bg = c.bg_popup })
|
||||||
|
hl("PmenuSel", { fg = c.fg_on_soft, bg = c.bg_selection, bold = true })
|
||||||
|
hl("PmenuKind", { fg = c.secondary, bg = c.bg_popup })
|
||||||
|
hl("PmenuKindSel", { fg = c.fg_on_soft, bg = c.secondary_container, bold = true })
|
||||||
|
hl("PmenuExtra", { fg = c.fg_muted, bg = c.bg_popup })
|
||||||
|
hl("PmenuExtraSel", { fg = c.fg_on_soft, bg = c.bg_selection })
|
||||||
|
hl("PmenuSbar", { bg = c.bg_alt })
|
||||||
|
hl("PmenuThumb", { bg = c.border })
|
||||||
|
hl("PmenuMatch", { fg = c.accent, bg = c.bg_popup, bold = true })
|
||||||
|
hl("PmenuMatchSel", { fg = c.accent, bg = c.bg_selection, bold = true })
|
||||||
|
hl("PmenuBorder", { fg = c.border, bg = c.bg_popup })
|
||||||
|
|
||||||
|
hl("StatusLine", { fg = c.fg_strong, bg = c.bg_statusline })
|
||||||
|
hl("StatusLineNC", { fg = c.fg_muted, bg = c.bg_statusline_nc })
|
||||||
|
link("StatusLineTerm", "StatusLine")
|
||||||
|
link("StatusLineTermNC", "StatusLineNC")
|
||||||
|
hl("TabLine", { fg = c.fg_muted, bg = c.bg_tabline })
|
||||||
|
hl("TabLineFill", { bg = c.bg_tabline })
|
||||||
|
hl("TabLineSel", { fg = c.fg_on_soft, bg = c.accent_container, bold = true })
|
||||||
|
hl("WinBar", { fg = c.fg, bg = c.bg })
|
||||||
|
hl("WinBarNC", { fg = c.fg_muted, bg = c.bg })
|
||||||
|
|
||||||
|
hl("Directory", { fg = c.accent, bg = "NONE" })
|
||||||
|
hl("Title", { fg = c.accent, bg = "NONE", bold = true })
|
||||||
|
hl("Question", { fg = c.secondary, bg = "NONE", bold = true })
|
||||||
|
hl("ModeMsg", { fg = c.accent, bg = "NONE", bold = true })
|
||||||
|
hl("MoreMsg", { fg = c.info, bg = "NONE", bold = true })
|
||||||
|
hl("ErrorMsg", { fg = c.error, bg = "NONE", bold = true })
|
||||||
|
hl("WarningMsg", { fg = c.warn, bg = "NONE", bold = true })
|
||||||
|
hl("OkMsg", { fg = c.ok, bg = "NONE", bold = true })
|
||||||
|
hl("QuickFixLine", { bg = c.bg_selection, bold = true })
|
||||||
|
|
||||||
|
-- Diffs ---------------------------------------------------------------------
|
||||||
|
hl("DiffAdd", { fg = c.add, bg = c.bg_alt })
|
||||||
|
hl("DiffChange", { fg = c.change, bg = c.bg_alt })
|
||||||
|
hl("DiffDelete", { fg = c.delete, bg = c.bg_alt })
|
||||||
|
hl("DiffText", { fg = c.fg_on_soft, bg = c.accent_container, bold = true })
|
||||||
|
link("DiffTextAdd", "DiffText")
|
||||||
|
hl("Added", { fg = c.add })
|
||||||
|
hl("Changed", { fg = c.change })
|
||||||
|
hl("Removed", { fg = c.delete })
|
||||||
|
|
||||||
|
-- Standard syntax groups ----------------------------------------------------
|
||||||
|
hl("Comment", { fg = c.fg_comment, italic = true })
|
||||||
|
hl("Constant", { fg = c.code_const })
|
||||||
|
hl("String", { fg = c.code_string })
|
||||||
|
hl("Character", { fg = c.code_string })
|
||||||
|
hl("Number", { fg = c.code_number })
|
||||||
|
hl("Boolean", { fg = c.code_number, bold = true })
|
||||||
|
hl("Float", { fg = c.code_number })
|
||||||
|
|
||||||
|
hl("Identifier", { fg = c.fg })
|
||||||
|
hl("Function", { fg = c.code_func, bold = true })
|
||||||
|
|
||||||
|
hl("Statement", { fg = c.code_keyword, bold = true })
|
||||||
|
link("Conditional", "Statement")
|
||||||
|
link("Repeat", "Statement")
|
||||||
|
link("Label", "Statement")
|
||||||
|
hl("Operator", { fg = c.code_operator })
|
||||||
|
hl("Keyword", { fg = c.code_keyword, italic = true })
|
||||||
|
link("Exception", "Statement")
|
||||||
|
|
||||||
|
hl("PreProc", { fg = c.code_preproc })
|
||||||
|
link("Include", "PreProc")
|
||||||
|
link("Define", "PreProc")
|
||||||
|
link("Macro", "PreProc")
|
||||||
|
link("PreCondit", "PreProc")
|
||||||
|
|
||||||
|
hl("Type", { fg = c.code_type, bold = true })
|
||||||
|
link("StorageClass", "Type")
|
||||||
|
link("Structure", "Type")
|
||||||
|
link("Typedef", "Type")
|
||||||
|
|
||||||
|
hl("Special", { fg = c.code_special })
|
||||||
|
link("SpecialChar", "Special")
|
||||||
|
link("Tag", "Special")
|
||||||
|
hl("Delimiter", { fg = c.fg_muted })
|
||||||
|
link("SpecialComment", "Special")
|
||||||
|
link("Debug", "Special")
|
||||||
|
|
||||||
|
hl("Underlined", { fg = c.accent, underline = true })
|
||||||
|
hl("Todo", { fg = c.todo_fg, bg = c.todo_bg, bold = true })
|
||||||
|
hl("Error", { fg = c.error, bold = true })
|
||||||
|
|
||||||
|
-- Spell ---------------------------------------------------------------------
|
||||||
|
hl("SpellBad", { sp = c.error, undercurl = true })
|
||||||
|
hl("SpellCap", { sp = c.info, undercurl = true })
|
||||||
|
hl("SpellLocal", { sp = c.hint, undercurl = true })
|
||||||
|
hl("SpellRare", { sp = c.secondary, undercurl = true })
|
||||||
|
|
||||||
|
-- Diagnostics ---------------------------------------------------------------
|
||||||
|
hl("DiagnosticError", { fg = c.error })
|
||||||
|
hl("DiagnosticWarn", { fg = c.warn })
|
||||||
|
hl("DiagnosticInfo", { fg = c.info })
|
||||||
|
hl("DiagnosticHint", { fg = c.hint })
|
||||||
|
hl("DiagnosticOk", { fg = c.ok })
|
||||||
|
|
||||||
|
hl("DiagnosticUnderlineError", { sp = c.error, undercurl = true })
|
||||||
|
hl("DiagnosticUnderlineWarn", { sp = c.warn, undercurl = true })
|
||||||
|
hl("DiagnosticUnderlineInfo", { sp = c.info, undercurl = true })
|
||||||
|
hl("DiagnosticUnderlineHint", { sp = c.hint, undercurl = true })
|
||||||
|
hl("DiagnosticUnderlineOk", { sp = c.ok, undercurl = true })
|
||||||
|
|
||||||
|
link("DiagnosticSignError", "DiagnosticError")
|
||||||
|
link("DiagnosticSignWarn", "DiagnosticWarn")
|
||||||
|
link("DiagnosticSignInfo", "DiagnosticInfo")
|
||||||
|
link("DiagnosticSignHint", "DiagnosticHint")
|
||||||
|
link("DiagnosticSignOk", "DiagnosticOk")
|
||||||
|
|
||||||
|
link("DiagnosticFloatingError", "DiagnosticError")
|
||||||
|
link("DiagnosticFloatingWarn", "DiagnosticWarn")
|
||||||
|
link("DiagnosticFloatingInfo", "DiagnosticInfo")
|
||||||
|
link("DiagnosticFloatingHint", "DiagnosticHint")
|
||||||
|
link("DiagnosticFloatingOk", "DiagnosticOk")
|
||||||
|
|
||||||
|
hl("DiagnosticVirtualTextError", { fg = c.error, bg = c.error_container })
|
||||||
|
hl("DiagnosticVirtualTextWarn", { fg = c.warn, bg = c.bg_alt })
|
||||||
|
hl("DiagnosticVirtualTextInfo", { fg = c.info, bg = c.bg_alt })
|
||||||
|
hl("DiagnosticVirtualTextHint", { fg = c.hint, bg = c.bg_alt })
|
||||||
|
hl("DiagnosticVirtualTextOk", { fg = c.ok, bg = c.bg_alt })
|
||||||
|
|
||||||
|
link("DiagnosticVirtualLinesError", "DiagnosticVirtualTextError")
|
||||||
|
link("DiagnosticVirtualLinesWarn", "DiagnosticVirtualTextWarn")
|
||||||
|
link("DiagnosticVirtualLinesInfo", "DiagnosticVirtualTextInfo")
|
||||||
|
link("DiagnosticVirtualLinesHint", "DiagnosticVirtualTextHint")
|
||||||
|
link("DiagnosticVirtualLinesOk", "DiagnosticVirtualTextOk")
|
||||||
|
|
||||||
|
hl("DiagnosticDeprecated", { fg = c.fg_muted, strikethrough = true })
|
||||||
|
hl("DiagnosticUnnecessary", { fg = c.fg_muted, italic = true })
|
||||||
|
|
||||||
|
-- LSP reference/inlay/codelens ---------------------------------------------
|
||||||
|
hl("LspReferenceText", { bg = c.ref_bg })
|
||||||
|
hl("LspReferenceRead", { bg = c.ref_bg })
|
||||||
|
hl("LspReferenceWrite", { bg = c.ref_bg, sp = c.accent, undercurl = true })
|
||||||
|
hl("LspReferenceTarget", { fg = c.accent, bg = c.ref_bg, bold = true })
|
||||||
|
hl("LspInlayHint", { fg = c.fg_muted, bg = c.bg_alt, italic = true })
|
||||||
|
hl("LspCodeLens", { fg = c.fg_muted, italic = true })
|
||||||
|
hl("LspCodeLensSeparator", { fg = c.border })
|
||||||
|
hl("LspSignatureActiveParameter", { fg = c.accent, bold = true, underline = true })
|
||||||
|
|
||||||
|
-- Treesitter captures -------------------------------------------------------
|
||||||
|
link("@comment", "Comment")
|
||||||
|
link("@comment.documentation", "Comment")
|
||||||
|
link("@comment.todo", "Todo")
|
||||||
|
link("@comment.error", "DiagnosticError")
|
||||||
|
link("@comment.warning", "DiagnosticWarn")
|
||||||
|
link("@comment.note", "DiagnosticInfo")
|
||||||
|
|
||||||
|
link("@constant", "Constant")
|
||||||
|
hl("@constant.builtin", { fg = c.code_builtin, italic = true, bold = true })
|
||||||
|
hl("@constant.macro", { fg = c.code_preproc, bold = true })
|
||||||
|
link("@string", "String")
|
||||||
|
hl("@string.escape", { fg = c.code_special, bold = true })
|
||||||
|
link("@string.regex", "Special")
|
||||||
|
link("@character", "Character")
|
||||||
|
link("@number", "Number")
|
||||||
|
link("@boolean", "Boolean")
|
||||||
|
link("@float", "Float")
|
||||||
|
|
||||||
|
link("@variable", "Identifier")
|
||||||
|
hl("@variable.builtin", { fg = c.code_builtin, italic = true, bold = true })
|
||||||
|
hl("@variable.parameter", { fg = c.code_param, italic = true })
|
||||||
|
hl("@variable.member", { fg = c.code_field })
|
||||||
|
hl("@property", { fg = c.code_field })
|
||||||
|
hl("@field", { fg = c.code_field })
|
||||||
|
|
||||||
|
link("@function", "Function")
|
||||||
|
hl("@function.builtin", { fg = c.code_builtin, bold = true })
|
||||||
|
link("@function.call", "Function")
|
||||||
|
hl("@function.method", { fg = c.code_func })
|
||||||
|
hl("@function.method.call", { fg = c.code_func })
|
||||||
|
hl("@constructor", { fg = c.code_type, bold = true })
|
||||||
|
|
||||||
|
link("@keyword", "Keyword")
|
||||||
|
hl("@keyword.function", { fg = c.code_keyword, bold = true })
|
||||||
|
hl("@keyword.operator", { fg = c.code_operator })
|
||||||
|
link("@keyword.return", "Keyword")
|
||||||
|
link("@conditional", "Conditional")
|
||||||
|
link("@repeat", "Repeat")
|
||||||
|
link("@label", "Label")
|
||||||
|
link("@operator", "Operator")
|
||||||
|
link("@exception", "Exception")
|
||||||
|
|
||||||
|
link("@preproc", "PreProc")
|
||||||
|
link("@include", "Include")
|
||||||
|
link("@define", "Define")
|
||||||
|
link("@macro", "Macro")
|
||||||
|
|
||||||
|
link("@type", "Type")
|
||||||
|
hl("@type.builtin", { fg = c.code_type, italic = true, bold = true })
|
||||||
|
link("@type.definition", "Type")
|
||||||
|
hl("@attribute", { fg = c.code_preproc })
|
||||||
|
hl("@module", { fg = c.code_namespace })
|
||||||
|
hl("@namespace", { fg = c.code_namespace })
|
||||||
|
|
||||||
|
link("@punctuation.delimiter", "Delimiter")
|
||||||
|
link("@punctuation.bracket", "Delimiter")
|
||||||
|
hl("@punctuation.special", { fg = c.code_special })
|
||||||
|
link("@tag", "Tag")
|
||||||
|
hl("@tag.attribute", { fg = c.code_field })
|
||||||
|
link("@tag.delimiter", "Delimiter")
|
||||||
|
|
||||||
|
-- LSP semantic token families ----------------------------------------------
|
||||||
|
link("@lsp.type.class", "@type")
|
||||||
|
link("@lsp.type.comment", "@comment")
|
||||||
|
link("@lsp.type.decorator", "@attribute")
|
||||||
|
link("@lsp.type.enum", "@type")
|
||||||
|
link("@lsp.type.enumMember", "@constant")
|
||||||
|
link("@lsp.type.event", "@property")
|
||||||
|
link("@lsp.type.function", "@function")
|
||||||
|
link("@lsp.type.interface", "@type")
|
||||||
|
link("@lsp.type.keyword", "@keyword")
|
||||||
|
link("@lsp.type.macro", "@macro")
|
||||||
|
link("@lsp.type.method", "@function.method")
|
||||||
|
link("@lsp.type.modifier", "@keyword")
|
||||||
|
link("@lsp.type.namespace", "@namespace")
|
||||||
|
link("@lsp.type.number", "@number")
|
||||||
|
link("@lsp.type.operator", "@operator")
|
||||||
|
link("@lsp.type.parameter", "@variable.parameter")
|
||||||
|
link("@lsp.type.property", "@property")
|
||||||
|
link("@lsp.type.regexp", "@string.regex")
|
||||||
|
link("@lsp.type.string", "@string")
|
||||||
|
link("@lsp.type.struct", "@type")
|
||||||
|
link("@lsp.type.type", "@type")
|
||||||
|
link("@lsp.type.typeParameter", "@type")
|
||||||
|
link("@lsp.type.variable", "@variable")
|
||||||
|
|
||||||
|
hl("@lsp.mod.deprecated", { strikethrough = true })
|
||||||
|
link("@lsp.mod.readonly", "Constant")
|
||||||
|
link("@lsp.typemod.variable.readonly", "Constant")
|
||||||
|
|
||||||
|
-- Common plugin aliases -----------------------------------------------------
|
||||||
|
hl("GitSignsAdd", { fg = c.add, bg = c.bg })
|
||||||
|
hl("GitSignsChange", { fg = c.change, bg = c.bg })
|
||||||
|
hl("GitSignsDelete", { fg = c.delete, bg = c.bg })
|
||||||
|
|
||||||
|
hl("MiniIndentscopeSymbol", { fg = c.border, nocombine = true })
|
||||||
|
hl("IblIndent", { fg = c.border, nocombine = true })
|
||||||
|
hl("IblScope", { fg = c.fg_muted, nocombine = true })
|
||||||
|
|
||||||
|
link("TelescopeNormal", "NormalFloat")
|
||||||
|
link("TelescopeBorder", "FloatBorder")
|
||||||
|
link("TelescopeTitle", "FloatTitle")
|
||||||
|
link("TelescopeSelection", "PmenuSel")
|
||||||
|
hl("TelescopeMatching", { fg = c.accent, bold = true })
|
||||||
|
|
||||||
|
-- Snacks.nvim picker / explorer --------------------------------------------
|
||||||
|
hl("SnacksPicker", { fg = c.fg, bg = c.bg })
|
||||||
|
hl("SnacksPickerBorder", { fg = c.border, bg = c.bg })
|
||||||
|
hl("SnacksPickerBoxBorder", { fg = c.border, bg = c.bg_alt })
|
||||||
|
hl("SnacksPickerTitle", { fg = c.accent, bg = c.bg_alt, bold = true })
|
||||||
|
|
||||||
|
hl("SnacksPickerInput", { fg = c.fg, bg = c.bg_alt })
|
||||||
|
hl("SnacksPickerInputBorder", { fg = c.border, bg = c.bg_alt })
|
||||||
|
hl("SnacksPickerInputTitle", { fg = c.accent, bg = c.bg_alt, bold = true })
|
||||||
|
hl("SnacksPickerInputSearch", { fg = c.accent, bg = c.bg_alt, bold = true })
|
||||||
|
hl("SnacksPickerPrompt", { fg = c.accent, bg = c.bg_alt, bold = true })
|
||||||
|
|
||||||
|
hl("SnacksPickerList", { fg = c.fg, bg = c.bg })
|
||||||
|
hl("SnacksPickerListBorder", { fg = c.border, bg = c.bg })
|
||||||
|
hl("SnacksPickerListTitle", { fg = c.secondary, bg = c.bg, bold = true })
|
||||||
|
hl("SnacksPickerListCursorLine", { bg = c.bg_cursorline })
|
||||||
|
|
||||||
|
hl("SnacksPickerPreview", { fg = c.fg, bg = c.bg_float })
|
||||||
|
hl("SnacksPickerPreviewBorder", { fg = c.border, bg = c.bg_float })
|
||||||
|
hl("SnacksPickerPreviewTitle", { fg = c.tertiary, bg = c.bg_float, bold = true })
|
||||||
|
|
||||||
|
hl("SnacksPickerMatch", { fg = c.accent, bold = true })
|
||||||
|
hl("SnacksPickerFile", { fg = c.fg })
|
||||||
|
hl("SnacksPickerDir", { fg = c.secondary })
|
||||||
|
hl("SnacksPickerPathHidden", { fg = c.fg_muted })
|
||||||
|
hl("SnacksPickerPathIgnored", { fg = c.fg_subtle, italic = true })
|
||||||
|
hl("SnacksPickerPathExcluded", { fg = c.fg_subtle, italic = true })
|
||||||
|
|
||||||
|
hl("SnacksPickerGitStatusAdded", { fg = c.add })
|
||||||
|
hl("SnacksPickerGitStatusModified", { fg = c.change })
|
||||||
|
hl("SnacksPickerGitStatusDeleted", { fg = c.delete })
|
||||||
|
hl("SnacksPickerGitStatusRenamed", { fg = c.info })
|
||||||
|
hl("SnacksPickerGitStatusCopied", { fg = c.info })
|
||||||
|
hl("SnacksPickerGitStatusUntracked", { fg = c.hint })
|
||||||
|
hl("SnacksPickerGitStatusIgnored", { fg = c.fg_subtle })
|
||||||
|
hl("SnacksPickerGitStatusStaged", { fg = c.ok })
|
||||||
|
|
||||||
|
return c
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
if not MiniSplitjoin then return end
|
||||||
local gen_hook = MiniSplitjoin.gen_hook
|
local gen_hook = MiniSplitjoin.gen_hook
|
||||||
|
|
||||||
local curly = { brackets = { '%b{}' }}
|
local curly = { brackets = { '%b{}' }}
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
local gen_hook = MiniSplitjoin.gen_hook
|
|
||||||
|
|
||||||
local curly = { brackets = { "%b{}" }, separator = ";" }
|
|
||||||
local curly_semi = { brackets = { "%b{}" }, separator = ";" }
|
|
||||||
local add_semicolon_curly = gen_hook.add_trailing_separator(curly)
|
|
||||||
local remove_semicolon_curly = gen_hook.del_trailing_separator(curly)
|
|
||||||
local pad_curly = gen_hook.pad_brackets(curly_semi)
|
|
||||||
|
|
||||||
vim.b.minisplitjoin_config = {
|
|
||||||
split = { hooks_post = { remove_semicolon_curly } },
|
|
||||||
join = { hooks_pre = { add_semicolon_curly }, hooks_post = { pad_curly } },
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
local bufnr = vim.api.nvim_get_current_buf()
|
||||||
|
vim.keymap.set(
|
||||||
|
"n",
|
||||||
|
"<leader>a",
|
||||||
|
function()
|
||||||
|
vim.cmd.RustLsp('codeAction') -- supports rust-analyzer's grouping
|
||||||
|
-- or vim.lsp.buf.codeAction() if you don't want grouping.
|
||||||
|
end,
|
||||||
|
{ silent = true, buffer = bufnr }
|
||||||
|
)
|
||||||
|
vim.keymap.set(
|
||||||
|
"n",
|
||||||
|
"K", -- Override Neovim's built-in hover keymap with rustaceanvim's hover actions
|
||||||
|
function()
|
||||||
|
vim.cmd.RustLsp({'hover', 'actions'})
|
||||||
|
end,
|
||||||
|
{ silent = true, buffer = bufnr }
|
||||||
|
)
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
require("config.lazy")
|
|
||||||
require("options")
|
require("options")
|
||||||
|
require("config.lazy")
|
||||||
require("globals")
|
require("globals")
|
||||||
require("mappings")
|
require("mappings")
|
||||||
require("autocmd")
|
require("autocmd")
|
||||||
|
|||||||
+10
-12
@@ -3,8 +3,8 @@ local autocmd = vim.api.nvim_create_autocmd
|
|||||||
autocmd("LspAttach", {
|
autocmd("LspAttach", {
|
||||||
callback = function(args)
|
callback = function(args)
|
||||||
local client = vim.lsp.get_client_by_id(args.data.client_id)
|
local client = vim.lsp.get_client_by_id(args.data.client_id)
|
||||||
if client and vim.lsp.document_color and vim.lsp.document_color.enable then
|
if client then
|
||||||
vim.lsp.document_color.enable(false, args.buf, { "background" })
|
vim.lsp.document_color.enable(false, { bufnr = args.buf })
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@@ -14,29 +14,27 @@ autocmd("VimLeave", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
autocmd("BufWritePre", {
|
autocmd("BufWritePre", {
|
||||||
callback = function()
|
pattern = "*",
|
||||||
local ok = pcall(function()
|
callback = function(args)
|
||||||
vim.cmd "undojoin"
|
require("conform").format({ bufnr = args.buf })
|
||||||
end)
|
|
||||||
vim.cmd "Neoformat"
|
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- fWindows
|
-- fWindows
|
||||||
autocmd("VimLeavePre", {
|
autocmd("VimLeavePre", {
|
||||||
group = vim.api.nvim_create_augroup('fuck_shada_temp', { clear = true }),
|
group = vim.api.nvim_create_augroup("fuck_shada_temp", { clear = true }),
|
||||||
pattern = { '*' },
|
pattern = { "*" },
|
||||||
callback = function()
|
callback = function()
|
||||||
local status = 0
|
local status = 0
|
||||||
for _, f in ipairs(vim.fn.globpath(vim.fn.stdpath('data') .. '/shada', '*tmp*', false, true)) do
|
for _, f in ipairs(vim.fn.globpath(vim.fn.stdpath "data" .. "/shada", "*tmp*", false, true)) do
|
||||||
if vim.tbl_isempty(vim.fn.readfile(f)) then
|
if vim.tbl_isempty(vim.fn.readfile(f)) then
|
||||||
status = status + vim.fn.delete(f)
|
status = status + vim.fn.delete(f)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if status ~= 0 then
|
if status ~= 0 then
|
||||||
vim.notify('Could not delete empty temporary ShaDa files.', vim.log.levels.ERROR)
|
vim.notify("Could not delete empty temporary ShaDa files.", vim.log.levels.ERROR)
|
||||||
vim.fn.getchar()
|
vim.fn.getchar()
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
desc = "Delete empty temp ShaDa files"
|
desc = "Delete empty temp ShaDa files",
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
require("copilot_cmp").setup {
|
|
||||||
event = { "InsertEnter", "LspAttach" },
|
|
||||||
fix_pairs = true,
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
require("conform").setup {
|
||||||
|
formatters_by_ft = {
|
||||||
|
lua = { "stylua" },
|
||||||
|
python = { "ruff" },
|
||||||
|
rust = { "rustfmt" },
|
||||||
|
javascript = { "prettier" },
|
||||||
|
typescript = { "prettier" },
|
||||||
|
qml = { "qmlformat" },
|
||||||
|
go = { "gofmt" },
|
||||||
|
sh = { "shfmt" },
|
||||||
|
bash = { "shfmt" },
|
||||||
|
zsh = { "shfmt" },
|
||||||
|
ps1 = {},
|
||||||
|
},
|
||||||
|
format_on_save = {
|
||||||
|
lsp_fallback = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -17,22 +17,16 @@ local function flatten_to_array(t)
|
|||||||
return res
|
return res
|
||||||
end
|
end
|
||||||
|
|
||||||
local capabilities = vim.tbl_deep_extend(
|
local capabilities =
|
||||||
"force",
|
vim.tbl_deep_extend("force", {}, vim.lsp.protocol.make_client_capabilities(), cmp_lsp.default_capabilities())
|
||||||
{},
|
|
||||||
vim.lsp.protocol.make_client_capabilities(),
|
|
||||||
cmp_lsp.default_capabilities()
|
|
||||||
)
|
|
||||||
|
|
||||||
require("fidget").setup {}
|
require("fidget").setup {}
|
||||||
require("mason").setup()
|
|
||||||
require("mason-lspconfig").setup {
|
require("mason-lspconfig").setup {
|
||||||
automatic_enable = true,
|
automatic_enable = false,
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
"qmlls",
|
"qmlls",
|
||||||
"rust_analyzer",
|
"rust_analyzer",
|
||||||
"gopls",
|
|
||||||
},
|
},
|
||||||
handlers = {
|
handlers = {
|
||||||
function(server_name) -- default handler (optional)
|
function(server_name) -- default handler (optional)
|
||||||
@@ -55,15 +49,24 @@ require("mason-lspconfig").setup {
|
|||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
["rust_analyzer"] = function()
|
||||||
|
local lspconfig = require "lspconfig"
|
||||||
|
lspconfig.rust_analyzer.setup {
|
||||||
|
capabilities = capabilities,
|
||||||
|
settings = {
|
||||||
|
["rust-analyzer"] = {
|
||||||
|
cargo = { allFeatures = true },
|
||||||
|
checkOnSave = { command = "clippy" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
|
||||||
zls = function()
|
zls = function()
|
||||||
local lspconfig = require "lspconfig"
|
local lspconfig = require "lspconfig"
|
||||||
lspconfig.zls.setup {
|
lspconfig.zls.setup {
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
root_dir = lspconfig.util.root_pattern(
|
root_dir = lspconfig.util.root_pattern(".git", "build.zig", "zls.json"),
|
||||||
".git",
|
|
||||||
"build.zig",
|
|
||||||
"zls.json"
|
|
||||||
),
|
|
||||||
settings = {
|
settings = {
|
||||||
zls = {
|
zls = {
|
||||||
enable_inlay_hints = true,
|
enable_inlay_hints = true,
|
||||||
@@ -75,6 +78,7 @@ require("mason-lspconfig").setup {
|
|||||||
vim.g.zig_fmt_parse_errors = 0
|
vim.g.zig_fmt_parse_errors = 0
|
||||||
vim.g.zig_fmt_autosave = 0
|
vim.g.zig_fmt_autosave = 0
|
||||||
end,
|
end,
|
||||||
|
|
||||||
["lua_ls"] = function()
|
["lua_ls"] = function()
|
||||||
local lspconfig = require "lspconfig"
|
local lspconfig = require "lspconfig"
|
||||||
lspconfig.lua_ls.setup {
|
lspconfig.lua_ls.setup {
|
||||||
@@ -214,8 +218,7 @@ lspconfig("texlab", {
|
|||||||
executable = "zathura",
|
executable = "zathura",
|
||||||
args = {
|
args = {
|
||||||
"--synctex-editor-command",
|
"--synctex-editor-command",
|
||||||
[[ nvim-texlabconfig -file '%%%{input}' -line %%%{line} -server ]]
|
[[ nvim-texlabconfig -file '%%%{input}' -line %%%{line} -server ]] .. vim.v.servername,
|
||||||
.. vim.v.servername,
|
|
||||||
"--synctex-forward",
|
"--synctex-forward",
|
||||||
"%l:1:%f",
|
"%l:1:%f",
|
||||||
"%p",
|
"%p",
|
||||||
@@ -252,6 +255,25 @@ lspconfig("jsonls", {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
lspconfig("powershell_es", {
|
||||||
|
settings = {
|
||||||
|
powershell = {
|
||||||
|
codeFormatting = {
|
||||||
|
preset = "Custom",
|
||||||
|
openBraceOnSameLine = true,
|
||||||
|
newLineAfterOpenBrace = false,
|
||||||
|
newLineAfterCloseBrace = true,
|
||||||
|
whitespaceBeforeOpenBrace = true,
|
||||||
|
whitespaceBeforeOpenParen = true,
|
||||||
|
whitespaceAroundOperator = true,
|
||||||
|
whitespaceAfterSeparator = true,
|
||||||
|
ignoreOneLineBlock = true,
|
||||||
|
pipelineIndentationStyle = "NoIndentation",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
lspconfig("yamlls", {
|
lspconfig("yamlls", {
|
||||||
settings = {
|
settings = {
|
||||||
yaml = {
|
yaml = {
|
||||||
@@ -282,15 +304,10 @@ local flat_servers = flatten_to_array(servers)
|
|||||||
|
|
||||||
for _, server in ipairs(flat_servers) do
|
for _, server in ipairs(flat_servers) do
|
||||||
lspconfig(server, {
|
lspconfig(server, {
|
||||||
on_attach = function(client, bufnr)
|
on_attach = function(client)
|
||||||
if client.name == "typos_lsp" or client.name == "copilot" then
|
if client.name == "typos_lsp" or client.name == "copilot" then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
require("workspace-diagnostics").populate_workspace_diagnostics(
|
|
||||||
client,
|
|
||||||
bufnr
|
|
||||||
)
|
|
||||||
end,
|
end,
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
local M = {}
|
|
||||||
|
|
||||||
M.plugin = {
|
|
||||||
"sbdchd/neoformat",
|
|
||||||
config = function()
|
|
||||||
vim.g.neoformat_enabled_lua = { "luaformatter" }
|
|
||||||
vim.g.neoformat_enabled_python = { "black" }
|
|
||||||
vim.g.neoformat_enabled_javascript = { "prettier" }
|
|
||||||
vim.g.neoformat_enabled_typescript = { "prettier" }
|
|
||||||
vim.g.neoformat_enabled_qml = { "qmlformat" }
|
|
||||||
vim.g.neoformat_enabled_go = { "gofmt" }
|
|
||||||
vim.g.neoformat_enabled_sh = { "shfmt" }
|
|
||||||
vim.g.neoformat_enabled_bash = { "shfmt" }
|
|
||||||
vim.g.neoformat_enabled_zsh = { "shfmt" }
|
|
||||||
vim.g.neoformat_enabled_powershell = { "pwshfmt" } -- experimental
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -11,6 +11,7 @@ prettier.setup({
|
|||||||
"json",
|
"json",
|
||||||
"less",
|
"less",
|
||||||
"markdown",
|
"markdown",
|
||||||
|
"rust",
|
||||||
"scss",
|
"scss",
|
||||||
"typescript",
|
"typescript",
|
||||||
"typescriptreact",
|
"typescriptreact",
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
require("colorizer").setup {
|
||||||
|
user_default_options = {
|
||||||
|
mode = "virtualtext",
|
||||||
|
virtualtext = "●",
|
||||||
|
css = true,
|
||||||
|
tailwind = true,
|
||||||
|
sass = { enable = true, parsers = { "css" } },
|
||||||
|
virtualtext_inline = "before",
|
||||||
|
AARRGGBB = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
require("undotree").setup {
|
||||||
|
float_diff = true,
|
||||||
|
layout = "left_bottom",
|
||||||
|
position = "left",
|
||||||
|
ignore_filetype = { "undotree", "undotreeDiff", "qf", "TelescopePrompt", "spectre_panel", "tsplayground" },
|
||||||
|
window = {
|
||||||
|
winblend = 30,
|
||||||
|
},
|
||||||
|
keymaps = {
|
||||||
|
["move_next"] = "j",
|
||||||
|
["move_prev"] = "k",
|
||||||
|
["move2parent"] = "gj",
|
||||||
|
["move_change_next"] = "J",
|
||||||
|
["move_change_prev"] = "K",
|
||||||
|
["action_enter"] = "<cr>",
|
||||||
|
["enter_diffbuf"] = "p", -- is defined for both undotree and preview buffers, so it works as a toggle
|
||||||
|
["quit"] = "q", -- is defined for both undotree and preview buffers
|
||||||
|
["update_undotree_view"] = "S",
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
vim.g.neovide_cursor_trail_size = 0
|
||||||
|
vim.g.neovide_floating_corner_radius = 0.4
|
||||||
|
vim.o.guifont = "0xProto Nerd Font Mono:h12"
|
||||||
|
vim.g.neovide_refresh_rate = 144
|
||||||
|
vim.g.neovide_refresh_rate_idle = 144
|
||||||
|
vim.g.neovide_no_idle = true
|
||||||
|
vim.g.neovide_floating_blur_amount_x = 0
|
||||||
|
vim.g.neovide_floating_blur_amount_y = 0
|
||||||
|
vim.g.neovide_cursor_animation_length = 0.08
|
||||||
|
vim.g.neovide_cursor_short_animation_length = 0.04
|
||||||
|
vim.g.neovide_scroll_animation_length = 0.15
|
||||||
@@ -1,17 +1,20 @@
|
|||||||
vim.notify = require('notify')
|
vim.notify = require('notify')
|
||||||
|
local icons = require("assets.icons").icons
|
||||||
local dap = require('dap')
|
local dap = require('dap')
|
||||||
|
|
||||||
require('notify').setup({
|
require('notify').setup({
|
||||||
|
-- background_colour = "#000000",
|
||||||
render = "wrapped-default",
|
render = "wrapped-default",
|
||||||
|
animation = "slide",
|
||||||
timeout = 6000,
|
timeout = 6000,
|
||||||
max_width = 50,
|
max_width = 50,
|
||||||
minimum_width = 50,
|
minimum_width = 50,
|
||||||
level = "info",
|
level = "info",
|
||||||
fps = 60,
|
fps = 60,
|
||||||
icons = {
|
icons = {
|
||||||
ERROR = "",
|
ERROR = icons.diagnostics.Error,
|
||||||
WARN = "",
|
WARN = icons.diagnostics.Warn,
|
||||||
INFO = "",
|
INFO = icons.diagnostics.Info,
|
||||||
DEBUG = "",
|
DEBUG = "",
|
||||||
TRACE = "✎",
|
TRACE = "✎",
|
||||||
},
|
},
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
local i = {}
|
|
||||||
|
|
||||||
function M.foldexpr()
|
|
||||||
local lnum = vim.v.lnum
|
|
||||||
local line = vim.fn.getline( lnum )
|
|
||||||
if line:find( "<think>", 1, true ) then
|
|
||||||
return "a1"
|
|
||||||
elseif line:find( "</think>", 1, true ) then
|
|
||||||
return "s1"
|
|
||||||
else
|
|
||||||
return "="
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
require("colorizer").setup({
|
|
||||||
user_default_options = {
|
|
||||||
mode = "virtualtext",
|
|
||||||
virtualtext = "■",
|
|
||||||
css = true,
|
|
||||||
tailwind = true,
|
|
||||||
sass = { enable = true, parsers = { "css" }},
|
|
||||||
virtualtext_inline = 'before',
|
|
||||||
AARRGGBB = true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
require('undotree').setup({
|
|
||||||
float_diff = true,
|
|
||||||
layout = "left_bottom",
|
|
||||||
position = "left",
|
|
||||||
ignore_filetype = { 'undotree', 'undotreeDiff', 'qf', 'TelescopePrompt', 'spectre_panel', 'tsplayground' },
|
|
||||||
window = {
|
|
||||||
winblend = 30,
|
|
||||||
},
|
|
||||||
keymaps = {
|
|
||||||
['j'] = "move_next",
|
|
||||||
['k'] = "move_prev",
|
|
||||||
['gj'] = "move2parent",
|
|
||||||
['J'] = "move_change_next",
|
|
||||||
['K'] = "move_change_prev",
|
|
||||||
['<cr>'] = "action_enter",
|
|
||||||
['p'] = "enter_diffbuf",
|
|
||||||
['q'] = "quit",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
-- Generated by zshell. Lualine theme matching the zshell colorscheme.
|
||||||
|
|
||||||
|
local is_light = "dark" == "light"
|
||||||
|
local function pick(light, dark)
|
||||||
|
return is_light and light or dark
|
||||||
|
end
|
||||||
|
|
||||||
|
local c = {
|
||||||
|
bg = "#121318",
|
||||||
|
bg_alt = "#1A1B20",
|
||||||
|
bg_mid = pick("#292A2F", "#1E1F25"),
|
||||||
|
fg = "#E3E2E9",
|
||||||
|
fg_muted = "#C4C6D3",
|
||||||
|
fg_strong = pick("#15161A", "#F4F4F8"),
|
||||||
|
|
||||||
|
normal = "#718EDF",
|
||||||
|
insert = "#3E4867",
|
||||||
|
visual = "#C177BE",
|
||||||
|
replace = "#93000A",
|
||||||
|
command = pick("#FFDCF2", "#90ACD5"),
|
||||||
|
inactive = "#1A1B20",
|
||||||
|
|
||||||
|
normal_fg = pick("#15161A", "#F4F4F8"),
|
||||||
|
insert_fg = pick("#15161A", "#F4F4F8"),
|
||||||
|
visual_fg = pick("#15161A", "#F4F4F8"),
|
||||||
|
replace_fg = pick("#15161A", "#F4F4F8"),
|
||||||
|
command_fg = pick("#15161A", "#F4F4F8"),
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
normal = {
|
||||||
|
a = { fg = c.normal_fg, bg = c.normal, gui = "bold" },
|
||||||
|
b = { fg = c.fg_strong, bg = c.bg_mid },
|
||||||
|
c = { fg = c.fg, bg = c.bg_alt },
|
||||||
|
},
|
||||||
|
insert = {
|
||||||
|
a = { fg = c.insert_fg, bg = c.insert, gui = "bold" },
|
||||||
|
b = { fg = c.fg_strong, bg = c.bg_mid },
|
||||||
|
c = { fg = c.fg, bg = c.bg_alt },
|
||||||
|
},
|
||||||
|
visual = {
|
||||||
|
a = { fg = c.visual_fg, bg = c.visual, gui = "bold" },
|
||||||
|
b = { fg = c.fg_strong, bg = c.bg_mid },
|
||||||
|
c = { fg = c.fg, bg = c.bg_alt },
|
||||||
|
},
|
||||||
|
replace = {
|
||||||
|
a = { fg = c.replace_fg, bg = c.replace, gui = "bold" },
|
||||||
|
b = { fg = c.fg_strong, bg = c.bg_mid },
|
||||||
|
c = { fg = c.fg, bg = c.bg_alt },
|
||||||
|
},
|
||||||
|
command = {
|
||||||
|
a = { fg = c.command_fg, bg = c.command, gui = "bold" },
|
||||||
|
b = { fg = c.fg_strong, bg = c.bg_mid },
|
||||||
|
c = { fg = c.fg, bg = c.bg_alt },
|
||||||
|
},
|
||||||
|
inactive = {
|
||||||
|
a = { fg = c.fg_muted, bg = c.inactive, gui = "bold" },
|
||||||
|
b = { fg = c.fg_muted, bg = c.inactive },
|
||||||
|
c = { fg = c.fg_muted, bg = c.bg },
|
||||||
|
},
|
||||||
|
}
|
||||||
+24
-7
@@ -11,11 +11,24 @@ map("n", "<C-a>", "ggVG", { noremap = true, silent = true })
|
|||||||
map("n", "<C-j>", "<C-d>zz")
|
map("n", "<C-j>", "<C-d>zz")
|
||||||
map("n", "<C-k>", "<C-u>zz")
|
map("n", "<C-k>", "<C-u>zz")
|
||||||
map("n", "<A-->", ":bdelete<CR>")
|
map("n", "<A-->", ":bdelete<CR>")
|
||||||
|
map("", "=", function()
|
||||||
|
require("conform").format({ async = true, lsp_fallback = true }, function(err)
|
||||||
|
if not err then
|
||||||
|
local mode = vim.api.nvim_get_mode().mode
|
||||||
|
if vim.startswith(string.lower(mode), "v") then
|
||||||
|
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes("<Esc>", true, false, true), "n", true)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end, { desc = "Format code" })
|
||||||
|
|
||||||
-- map("n", "<SA-->", ":BufferRestore<CR>")
|
-- map("n", "<SA-->", ":BufferRestore<CR>")
|
||||||
map('n', '<leader>e', function() Snacks.explorer() end)
|
map("n", "<leader>e", function()
|
||||||
map('n', '<leader>u', require('undotree').toggle, { noremap = true, silent = true })
|
Snacks.explorer()
|
||||||
|
end)
|
||||||
map("n", "<leader>g", require("telescope.builtin").live_grep, { desc = "Telescope grep" })
|
map("n", "<leader>g", require("telescope.builtin").live_grep, { desc = "Telescope grep" })
|
||||||
map("n", "<leader>f", require("telescope.builtin").find_files, { desc = "Telescope find files" })
|
map("n", "<leader>f", require("telescope.builtin").find_files, { desc = "Telescope find files" })
|
||||||
|
map("n", "<leader>u", require("undotree").toggle, { noremap = true, silent = true })
|
||||||
|
|
||||||
-- Copilot Chat buffer
|
-- Copilot Chat buffer
|
||||||
map("n", "<A-c>", vim.cmd.CopilotChatToggle)
|
map("n", "<A-c>", vim.cmd.CopilotChatToggle)
|
||||||
@@ -28,16 +41,20 @@ map("n", "<leader>zig", "<cmd>LspRestart<cr>")
|
|||||||
-- Why?
|
-- Why?
|
||||||
map("x", "<leader>p", [["_dP]])
|
map("x", "<leader>p", [["_dP]])
|
||||||
map({ "n", "v" }, "<leader>y", [["+y]])
|
map({ "n", "v" }, "<leader>y", [["+y]])
|
||||||
map({"n", "v"}, "<leader>d", "\"_d")
|
map({ "n", "v" }, "<leader>d", '"_d')
|
||||||
map("n", "<leader>mr", "<cmd>CellularAutomaton make_it_rain<CR>");
|
map("n", "<leader>mr", "<cmd>CellularAutomaton make_it_rain<CR>")
|
||||||
map("n", "<leader><leader>", function()
|
map("n", "<leader><leader>", function()
|
||||||
vim.cmd("so")
|
vim.cmd "so"
|
||||||
end)
|
end)
|
||||||
|
|
||||||
-- Greatest remap
|
-- Greatest remap
|
||||||
map("n", "<leader>Y", [["+Y]])
|
map("n", "<leader>Y", [["+Y]])
|
||||||
map("n", "<A-q>", function() Snacks.terminal.toggle() end, { desc = "Toggle Terminal" })
|
map("n", "<A-q>", function()
|
||||||
map("n", "<leader>gb", function() Snacks.gitbrowse.open() end )
|
Snacks.terminal.toggle()
|
||||||
|
end, { desc = "Toggle Terminal" })
|
||||||
|
map("n", "<leader>gb", function()
|
||||||
|
Snacks.gitbrowse.open()
|
||||||
|
end)
|
||||||
map("n", "K", require("pretty_hover").hover)
|
map("n", "K", require("pretty_hover").hover)
|
||||||
|
|
||||||
-- Might delete later
|
-- Might delete later
|
||||||
|
|||||||
+3
-4
@@ -13,14 +13,14 @@ vim.opt.wrap = true
|
|||||||
vim.opt.linebreak = true
|
vim.opt.linebreak = true
|
||||||
vim.opt.swapfile = false
|
vim.opt.swapfile = false
|
||||||
vim.opt.backup = false
|
vim.opt.backup = false
|
||||||
vim.opt.undodir = vim.fn.stdpath('data') .. '/undodir'
|
vim.opt.undodir = vim.fn.stdpath "data" .. "/undodir"
|
||||||
vim.opt.undofile = true
|
vim.opt.undofile = true
|
||||||
vim.opt.hlsearch = false
|
vim.opt.hlsearch = false
|
||||||
vim.opt.incsearch = true
|
vim.opt.incsearch = true
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.opt.scrolloff = 8
|
vim.opt.scrolloff = 8
|
||||||
vim.opt.signcolumn = "yes:1"
|
vim.opt.signcolumn = "yes:1"
|
||||||
vim.opt.isfname:append("@-@")
|
vim.opt.isfname:append "@-@"
|
||||||
vim.opt.updatetime = 50
|
vim.opt.updatetime = 50
|
||||||
vim.opt.colorcolumn = "80"
|
vim.opt.colorcolumn = "80"
|
||||||
vim.opt.textwidth = 80
|
vim.opt.textwidth = 80
|
||||||
@@ -29,12 +29,11 @@ vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,
|
|||||||
vim.o.clipboard = "unnamedplus"
|
vim.o.clipboard = "unnamedplus"
|
||||||
vim.o.cursorline = true
|
vim.o.cursorline = true
|
||||||
vim.o.cursorlineopt = "number"
|
vim.o.cursorlineopt = "number"
|
||||||
|
vim.o.number = true
|
||||||
vim.opt.fillchars = { eob = " " }
|
vim.opt.fillchars = { eob = " " }
|
||||||
vim.o.ignorecase = true
|
vim.o.ignorecase = true
|
||||||
vim.o.smartcase = true
|
vim.o.smartcase = true
|
||||||
vim.o.mouse = "a"
|
vim.o.mouse = "a"
|
||||||
vim.o.number = true
|
|
||||||
vim.o.termguicolors = true
|
|
||||||
vim.o.numberwidth = 3
|
vim.o.numberwidth = 3
|
||||||
vim.o.ruler = false
|
vim.o.ruler = false
|
||||||
vim.o.showmode = false
|
vim.o.showmode = false
|
||||||
|
|||||||
@@ -9,4 +9,15 @@ return {
|
|||||||
---@type render.md.UserConfig
|
---@type render.md.UserConfig
|
||||||
opts = require "config.format.markdown",
|
opts = require "config.format.markdown",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"mrcjkb/rustaceanvim",
|
||||||
|
version = "^9",
|
||||||
|
-- lazy = false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"stevearc/conform.nvim",
|
||||||
|
config = function()
|
||||||
|
require "config.format.conform"
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-3
@@ -2,7 +2,7 @@ return {
|
|||||||
{
|
{
|
||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.gitsigns")
|
require "config.other.gitsigns"
|
||||||
end
|
end,
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
+23
-57
@@ -1,14 +1,6 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
require("config.snacks")
|
require "config.snacks",
|
||||||
},
|
|
||||||
{
|
|
||||||
"nvim-mini/mini.nvim",
|
|
||||||
version = false,
|
|
||||||
|
|
||||||
modules = function()
|
|
||||||
require("config.mini-modules")
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
@@ -16,7 +8,7 @@ return {
|
|||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
branch = "main",
|
branch = "main",
|
||||||
config = function()
|
config = function()
|
||||||
require "config.treesitter"
|
require "config.modules.treesitter"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -32,7 +24,7 @@ return {
|
|||||||
{
|
{
|
||||||
"rmagatti/auto-session",
|
"rmagatti/auto-session",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.autosession")
|
require "config.modules.autosession"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -48,22 +40,19 @@ return {
|
|||||||
"akinsho/bufferline.nvim",
|
"akinsho/bufferline.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.barbar")
|
require "config.other.barbar"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"mawkler/modicator.nvim",
|
"mawkler/modicator.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.modicator")
|
require "config.gui.modicator"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"shinchu/lightline-gruvbox.vim",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"jiaoshijie/undotree",
|
"jiaoshijie/undotree",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.undotree")
|
require "config.modules.undotree"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -74,7 +63,7 @@ return {
|
|||||||
"windwp/nvim-autopairs",
|
"windwp/nvim-autopairs",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.autopairs")
|
require "config.other.autopairs"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -83,7 +72,7 @@ return {
|
|||||||
{
|
{
|
||||||
"rcarriga/nvim-notify",
|
"rcarriga/nvim-notify",
|
||||||
config = function()
|
config = function()
|
||||||
require "config.notify"
|
require "config.other.notify"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -94,12 +83,6 @@ return {
|
|||||||
require "config.ai.copilot"
|
require "config.ai.copilot"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"zbirenbaum/copilot-cmp",
|
|
||||||
config = function ()
|
|
||||||
require "config.ai.copilot_cmp"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"CopilotC-Nvim/CopilotChat.nvim",
|
"CopilotC-Nvim/CopilotChat.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
@@ -114,12 +97,11 @@ return {
|
|||||||
{
|
{
|
||||||
"mfussenegger/nvim-dap",
|
"mfussenegger/nvim-dap",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.dapconf")
|
require "config.other.dapconf"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"mason-org/mason-lspconfig.nvim",
|
"mason-org/mason-lspconfig.nvim",
|
||||||
opts = {},
|
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{ "mason-org/mason.nvim", opts = {} },
|
{ "mason-org/mason.nvim", opts = {} },
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
@@ -129,15 +111,15 @@ return {
|
|||||||
"folke/lazydev.nvim",
|
"folke/lazydev.nvim",
|
||||||
ft = "lua",
|
ft = "lua",
|
||||||
opts = function()
|
opts = function()
|
||||||
require("config.lazydev")
|
require "config.lazydev"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
enabled = true,
|
enabled = true,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"williamboman/mason.nvim",
|
-- "williamboman/mason.nvim",
|
||||||
"williamboman/mason-lspconfig.nvim",
|
-- "williamboman/mason-lspconfig.nvim",
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
"hrsh7th/cmp-buffer",
|
"hrsh7th/cmp-buffer",
|
||||||
"hrsh7th/cmp-path",
|
"hrsh7th/cmp-path",
|
||||||
@@ -147,10 +129,9 @@ return {
|
|||||||
"saadparwaiz1/cmp_luasnip",
|
"saadparwaiz1/cmp_luasnip",
|
||||||
"j-hui/fidget.nvim",
|
"j-hui/fidget.nvim",
|
||||||
"b0o/schemastore.nvim",
|
"b0o/schemastore.nvim",
|
||||||
"saghen/blink.cmp",
|
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("config.format.lspconfig")
|
require "config.format.lspconfig"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -181,7 +162,7 @@ return {
|
|||||||
{
|
{
|
||||||
"f3fora/nvim-texlabconfig",
|
"f3fora/nvim-texlabconfig",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.format.texlab")
|
require "config.format.texlab"
|
||||||
end,
|
end,
|
||||||
build = "go build",
|
build = "go build",
|
||||||
},
|
},
|
||||||
@@ -191,18 +172,6 @@ return {
|
|||||||
{
|
{
|
||||||
"vimpostor/vim-tpipeline",
|
"vimpostor/vim-tpipeline",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"yazeed1s/minimal.nvim",
|
|
||||||
config = function()
|
|
||||||
vim.g.minimal_italic_comments = true
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ThePrimeagen/refactoring.nvim",
|
|
||||||
config = function()
|
|
||||||
require("config.format.refactoring")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Yazeed1s/minimal.nvim",
|
"Yazeed1s/minimal.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -213,13 +182,13 @@ return {
|
|||||||
{
|
{
|
||||||
"aserowy/tmux.nvim",
|
"aserowy/tmux.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.terminal.tmux")
|
require "config.terminal.tmux"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rachartier/tiny-inline-diagnostic.nvim",
|
"rachartier/tiny-inline-diagnostic.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.format.TID")
|
require "config.format.TID"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -229,25 +198,19 @@ return {
|
|||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("config.harpoon")
|
require "config.other.harpoon"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"aznhe21/actions-preview.nvim",
|
"aznhe21/actions-preview.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.actions-preview")
|
require "config.other.actions-preview"
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"sbdchd/neoformat",
|
|
||||||
config = function()
|
|
||||||
require("config.format.neoformat")
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Zacharias-Brohn/zterm-navigator.nvim",
|
"Zacharias-Brohn/zterm-navigator.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.terminal.zterm-navigator")
|
require "config.terminal.zterm-navigator"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -256,6 +219,9 @@ return {
|
|||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"artemave/workspace-diagnostics.nvim",
|
"jiaoshijie/undotree",
|
||||||
|
config = function()
|
||||||
|
require "config.modules.undotree"
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ return {
|
|||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("config.telescope")
|
require("config.modules.telescope")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,13 +16,13 @@ return {
|
|||||||
})
|
})
|
||||||
vim.o.laststatus = 0
|
vim.o.laststatus = 0
|
||||||
end
|
end
|
||||||
require("config.theme.lualine")
|
require("config.gui.lualine")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"catgoose/nvim-colorizer.lua",
|
"catgoose/nvim-colorizer.lua",
|
||||||
config = function()
|
config = function()
|
||||||
require("config.theme.colorizer")
|
require("config.gui.colorizer")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -30,7 +30,7 @@ return {
|
|||||||
enabled = false,
|
enabled = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
require("config.theme.onedarkpro-light")
|
require("config.gui.themes.onedarkpro-light")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ $packages = @(
|
|||||||
"GNU.Wget2",
|
"GNU.Wget2",
|
||||||
"GnuWin32.UnZip",
|
"GnuWin32.UnZip",
|
||||||
"GnuWin32.Gzip",
|
"GnuWin32.Gzip",
|
||||||
"7zip.7zip"
|
"7zip.7zip",
|
||||||
|
"PSScriptAnalyzer"
|
||||||
)
|
)
|
||||||
|
|
||||||
for ($i = 0; $i -lt $packages.Count; $i++) {
|
for ($i = 0; $i -lt $packages.Count; $i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user