Compare commits

...

25 Commits

Author SHA1 Message Date
calcu1on
42369bc959 Adding rose pine and configure as default. 2025-09-29 08:35:07 -04:00
calcu1on
d2261a927c Update plugins. 2025-09-29 08:31:14 -04:00
calcu1on
e49ce77ec4 More updates. 2025-08-29 21:39:25 -04:00
Dan Chadwick
3eef18f9cd Adding lazygit back for a nice ui. 2025-08-27 09:41:54 -04:00
calcu1on
69ec44c865 Removing cll to sistine theme. 2025-08-04 07:16:56 -04:00
calcu1on
a2ed35c726 Update everything. 2025-08-04 07:15:44 -04:00
calcu1on
6eda929dd3 Adding custom color schemes. 2025-07-31 12:27:11 -04:00
calcu1on
074e475d40 Update packages. 2025-07-30 09:44:43 -04:00
calcu1on
c47b4da611 Changing left and right navigation in bar bar. 2025-07-21 07:48:14 -04:00
calcu1on
b3fdc6d580 Changing keybing to close buffer in bar bar. 2025-07-21 07:46:43 -04:00
calcu1on
3a4fcf5762 Adding colorizer. 2025-07-21 07:46:16 -04:00
calcu1on
cb535f28e4 Turn off lazy loading for markview and treesitter, updating packages. 2025-07-08 08:27:53 -04:00
Dan Chadwick
cf575950da Updating packages. 2025-06-30 09:08:17 -04:00
calcu1on
de6697239e Adding barbar and things. 2025-06-30 08:46:33 -04:00
Dan Chadwick
09e62e8940 Picker ignoring and adding markview back. 2025-06-27 10:16:32 -04:00
calcu1on
cbce3193f9 Adding kanagawa as default. 2025-06-19 19:49:19 -04:00
calcu1on
17f72e1552 Updating plugins. 2025-06-17 20:56:04 -04:00
calcu1on
06f73e3f29 Updating things. 2025-06-12 21:29:21 -04:00
calcu1on
0f831a46b1 Changing keymap for saving and quitting. 2025-05-21 08:54:11 -04:00
calcu1on
d171bfe6f3 Removing lazygit to focus on using fugitive. 2025-05-21 08:47:29 -04:00
calcu1on
7d8372c71f Comment in init.lua around dap configuration. 2025-05-21 08:44:25 -04:00
calcu1on
547d9b000a Updating lualine. 2025-05-21 08:40:55 -04:00
calcu1on
0129204a78 Forcing enter terminal mode when term opened, adding keymap to exit terminal mode. 2025-05-21 08:39:34 -04:00
calcu1on
1796a835f8 Removing drupal lsp from init.lua as its in its own folder now. 2025-05-21 08:28:11 -04:00
calcu1on
dc60249576 Adding theme switch keymap 2025-05-21 08:22:35 -04:00
14 changed files with 835 additions and 40 deletions

195
colors/demoiselles.lua Normal file
View File

@@ -0,0 +1,195 @@
local variant = vim.o.background -- "dark" or "light"
local colors = {}
if variant == "dark" then
colors = {
bg = "#1b1b1b", -- Bone black
fg = "#ddccbb", -- Lead white (muted for dark bg)
comment = "#807060", -- Warm neutral
red = "#d96a59", -- Vermilion-ochre
green = "#6ea177", -- Emerald green
yellow = "#e0b15e", -- Cadmium yellow
blue = "#8fb9c9", -- Cobalt blue
magenta = "#c9b78e", -- Ochre-pink repurposed
cyan = "#a3b6a8", -- Cool neutral accent
cursorline = "#2a2e33", -- Slightly lighter than bg
highlight = "#444444", -- For visual selections
}
else
colors = {
bg = "#fcf8f0", -- Lead white / fresco ivory
fg = "#3b3025", -- Deep umber brown
red = "#a5443a", -- Rusty vermilion
green = "#4f7c69", -- Emerald green softened
yellow = "#c69c3a", -- Renaissance gold / cadmium yellow
blue = "#3b6a8b", -- Muted cobalt blue
magenta = "#8c7a5e", -- Ochre-pink accent
cyan = "#a8c3d1", -- Soft sky blue-grey
comment = "#8b7e70", -- Warm stone grey
cursorline = "#e0d5c8", -- Pale ivory shadow
highlight = "#c9a04f", -- Gold highlight
}
end
vim.cmd("hi clear")
vim.o.termguicolors = true
vim.g.colors_name = "demoiselles"
local set = vim.api.nvim_set_hl
local function hi(group, opts) set(0, group, opts) end
-- Core UI
hi("Normal", { fg = colors.fg, bg = colors.bg })
hi("CursorLine", { bg = colors.cursorline })
hi("Visual", { bg = colors.highlight })
hi("LineNr", { fg = colors.comment })
hi("CursorLineNr",{ fg = colors.yellow, bold = true })
hi("VertSplit", { fg = colors.comment })
hi("StatusLine", { fg = colors.fg, bg = colors.cursorline })
hi("StatusLineNC",{ fg = colors.comment, bg = colors.cursorline })
hi("Pmenu", { fg = colors.fg, bg = colors.cursorline })
hi("PmenuSel", { fg = colors.bg, bg = colors.yellow })
hi("Search", { fg = colors.bg, bg = colors.yellow })
hi("IncSearch", { fg = colors.bg, bg = colors.red })
-- Syntax
hi("Comment", { fg = colors.comment, italic = true })
hi("Constant", { fg = colors.red })
hi("String", { fg = colors.yellow })
hi("Character", { fg = colors.yellow })
hi("Number", { fg = colors.red })
hi("Boolean", { fg = colors.red })
hi("Float", { fg = colors.red })
hi("Identifier", { fg = colors.blue })
hi("Function", { fg = colors.green })
hi("Statement", { fg = colors.blue })
hi("Conditional", { fg = colors.magenta })
hi("Repeat", { fg = colors.magenta })
hi("Label", { fg = colors.yellow })
hi("Operator", { fg = colors.fg })
hi("Keyword", { fg = colors.blue, bold = true })
hi("Exception", { fg = colors.red })
hi("PreProc", { fg = colors.magenta })
hi("Include", { fg = colors.blue })
hi("Define", { fg = colors.magenta })
hi("Macro", { fg = colors.magenta })
hi("PreCondit", { fg = colors.magenta })
hi("Type", { fg = colors.green })
hi("StorageClass",{ fg = colors.green })
hi("Structure", { fg = colors.green })
hi("Typedef", { fg = colors.green })
hi("Special", { fg = colors.cyan })
hi("SpecialChar", { fg = colors.yellow })
hi("Tag", { fg = colors.blue })
hi("Delimiter", { fg = colors.fg })
hi("SpecialComment",{ fg = colors.comment, italic = true })
hi("Debug", { fg = colors.red })
hi("Underlined", { fg = colors.blue, underline = true })
hi("Bold", { bold = true })
hi("Italic", { italic = true })
hi("Error", { fg = colors.red, bold = true })
hi("Todo", { fg = colors.magenta, bold = true })
hi("WarningMsg", { fg = colors.yellow })
hi("ErrorMsg", { fg = colors.red, bold = true })
-- Diagnostics (LSP)
hi("DiagnosticError", { fg = colors.red })
hi("DiagnosticWarn", { fg = colors.yellow })
hi("DiagnosticInfo", { fg = colors.blue })
hi("DiagnosticHint", { fg = colors.cyan })
hi("DiagnosticUnderlineError", { undercurl = true, sp = colors.red })
hi("DiagnosticUnderlineWarn", { undercurl = true, sp = colors.yellow })
hi("DiagnosticUnderlineInfo", { undercurl = true, sp = colors.blue })
hi("DiagnosticUnderlineHint", { undercurl = true, sp = colors.cyan })
-- LSP Semantic Tokens
hi("@lsp.type.class", { fg = colors.yellow })
hi("@lsp.type.function", { fg = colors.blue })
hi("@lsp.type.variable", { fg = colors.fg })
hi("@lsp.type.parameter", { fg = colors.cyan })
hi("@lsp.type.property", { fg = colors.green })
hi("@lsp.type.enum", { fg = colors.magenta })
-- Treesitter
hi("@comment", { fg = colors.comment, italic = true })
hi("@function", { fg = colors.blue })
hi("@keyword", { fg = colors.red, italic = true })
hi("@string", { fg = colors.green })
hi("@variable", { fg = colors.fg })
hi("@type", { fg = colors.yellow })
hi("@property", { fg = colors.green })
hi("@number", { fg = colors.magenta })
-- Telescope
hi("TelescopeBorder", { fg = colors.comment })
hi("TelescopePromptTitle",{ fg = colors.yellow, bold = true })
hi("TelescopeSelection", { bg = colors.cursorline })
hi("TelescopeMatching", { fg = colors.blue })
-- DAP (Debug)
hi("DebugBreakpoint", { fg = colors.red })
hi("DebugBreakpointLine", { bg = colors.cursorline })
hi("DebugPC", { bg = colors.highlight })
hi("DebugCurrentLine", { underline = true, sp = colors.yellow })
-- Pmenu (Completion)
hi("Pmenu", { fg = colors.fg, bg = colors.cursorline })
hi("PmenuSel", { fg = colors.bg, bg = colors.highlight })
hi("PmenuThumb", { bg = colors.highlight })
-- Notify / Noice / Snacks
hi("NotifyINFOBorder", { fg = colors.blue })
hi("NotifyWARNBorder", { fg = colors.yellow })
hi("NotifyERRORBorder", { fg = colors.red })
hi("NotifyDEBUGBorder", { fg = colors.cyan })
hi("NotifyTRACEBorder", { fg = colors.magenta })
hi("NoicePopup", { bg = colors.cursorline })
hi("NoicePopupmenu", { bg = colors.cursorline, fg = colors.fg })
-- Git Diff
hi("DiffAdd", { fg = colors.green })
hi("DiffChange", { fg = colors.blue })
hi("DiffDelete", { fg = colors.red })
-- Terminal Colors
vim.g.terminal_color_0 = colors.bg
vim.g.terminal_color_1 = colors.red
vim.g.terminal_color_2 = colors.green
vim.g.terminal_color_3 = colors.yellow
vim.g.terminal_color_4 = colors.blue
vim.g.terminal_color_5 = colors.magenta
vim.g.terminal_color_6 = colors.cyan
vim.g.terminal_color_7 = colors.fg
vim.g.terminal_color_8 = colors.comment
vim.g.terminal_color_9 = colors.red
vim.g.terminal_color_10 = colors.green
vim.g.terminal_color_11 = colors.yellow
vim.g.terminal_color_12 = colors.blue
vim.g.terminal_color_13 = colors.magenta
vim.g.terminal_color_14 = colors.cyan
vim.g.terminal_color_15 = colors.fg
-- Apply Snacks highlights unconditionally
hi("SnacksNormal", { fg = colors.fg, bg = colors.bg })
hi("SnacksNormalNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksWinBar", { fg = colors.magenta, bg = colors.bg, bold = true })
hi("SnacksWinBarNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksCursorLine", { bg = colors.highlight })
hi("SnacksCursor", { bg = colors.highlight })
hi("SnacksPickerFile", { fg = colors.green, bold = true })
hi("SnacksPickerDir", { fg = colors.comment })
hi("SnacksPickerPathHidden", { fg = colors.comment, italic = true })
hi("SnacksPickerPathIgnored",{ fg = colors.comment, italic = true })
hi("SnacksPickerPrefix", { fg = colors.yellow })
hi("SnacksPickerNormal", { fg = colors.fg, bg = colors.yellow }) -- Normal picker line
hi("SnacksPickerSelected", { fg = colors.bg, bg = colors.highlight }) -- Selected item (invert fg/bg)
hi("SnacksPickerCursor", { fg = colors.yellow, bg = colors.cursorline })
hi("NormalFloat", { fg = colors.fg, bg = colors.bg })

201
colors/nighthawks.lua Normal file
View File

@@ -0,0 +1,201 @@
-- nighthawks.lua
-- Neovim colorscheme inspired by Edward Hopper's "Nighthawks" (1942)
-- Dark = cinematic nighttime neon
-- Light = soft morning reinterpretation
local variant = vim.g.nighthawks_variant or "dark"
local colors = {}
if variant == "dark" then
colors = {
bg = "#0e1a22", -- Deep midnight navy
fg = "#d4d8dc", -- Pale warm white
comment = "#6a7b85", -- Smoky teal-gray
red = "#d15b4d", -- Neon diner red
green = "#6fa88d", -- Jade counter green
yellow = "#e3c770", -- Warm interior light
blue = "#5a87a5", -- Windowpane blue
magenta = "#b67aa0", -- Soft wine glow
cyan = "#77aab7", -- Cool teal accent
cursorline = "#172730", -- Slightly lighter than bg
highlight = "#24404f", -- Dim cyan highlight
}
else
colors = {
bg = "#f6f4f2", -- Muted paper white
fg = "#2f3b44", -- Charcoal ink
comment = "#868d93", -- Cool gray
red = "#b14f42", -- Brick red
green = "#5d8b76", -- Muted jade
yellow = "#c8a856", -- Soft sunlight gold
blue = "#3f6c89", -- Subdued cobalt
magenta = "#9b6f86", -- Dusty rose
cyan = "#649aa5", -- Sky teal
cursorline = "#e3dfdc", -- Light stone gray
highlight = "#c2b89c", -- Warm neutral highlight
}
end
local function hi(group, opts)
vim.api.nvim_set_hl(0, group, opts)
end
-- Core UI
hi("Normal", { fg = colors.fg, bg = colors.bg })
hi("CursorLine", { bg = colors.cursorline })
hi("Visual", { bg = colors.highlight })
hi("LineNr", { fg = colors.comment })
hi("CursorLineNr",{ fg = colors.yellow, bold = true })
hi("VertSplit", { fg = colors.comment })
hi("StatusLine", { fg = colors.fg, bg = colors.cursorline })
hi("StatusLineNC",{ fg = colors.comment, bg = colors.cursorline })
hi("Pmenu", { fg = colors.fg, bg = colors.cursorline })
hi("PmenuSel", { fg = colors.bg, bg = colors.blue, bold = true })
hi("Search", { fg = colors.bg, bg = colors.yellow, bold = true })
hi("IncSearch", { fg = colors.bg, bg = colors.red, bold = true })
-- Syntax
hi("Comment", { fg = colors.comment, italic = true })
hi("Constant", { fg = colors.red })
hi("String", { fg = colors.yellow })
hi("Character", { fg = colors.yellow })
hi("Number", { fg = colors.cyan })
hi("Boolean", { fg = colors.cyan, bold = true })
hi("Float", { fg = colors.cyan })
hi("Identifier", { fg = colors.blue })
hi("Function", { fg = colors.green, bold = true })
hi("Statement", { fg = colors.blue })
hi("Conditional", { fg = colors.magenta })
hi("Repeat", { fg = colors.magenta })
hi("Label", { fg = colors.yellow })
hi("Operator", { fg = colors.fg })
hi("Keyword", { fg = colors.blue, bold = true })
hi("Exception", { fg = colors.red })
hi("PreProc", { fg = colors.magenta })
hi("Include", { fg = colors.blue })
hi("Define", { fg = colors.magenta })
hi("Macro", { fg = colors.magenta })
hi("PreCondit", { fg = colors.magenta })
hi("Type", { fg = colors.green })
hi("StorageClass",{ fg = colors.green })
hi("Structure", { fg = colors.green })
hi("Typedef", { fg = colors.green })
hi("Special", { fg = colors.cyan })
hi("SpecialChar", { fg = colors.yellow })
hi("Tag", { fg = colors.blue })
hi("Delimiter", { fg = colors.fg })
hi("SpecialComment",{ fg = colors.comment, italic = true })
hi("Debug", { fg = colors.red })
hi("Underlined", { fg = colors.blue, underline = true })
hi("Bold", { bold = true })
hi("Italic", { italic = true })
hi("Error", { fg = colors.red, bold = true })
hi("Todo", { fg = colors.yellow, bold = true })
hi("WarningMsg", { fg = colors.yellow })
hi("ErrorMsg", { fg = colors.red, bold = true })
-- Diagnostics (LSP)
hi("DiagnosticError", { fg = colors.red })
hi("DiagnosticWarn", { fg = colors.yellow })
hi("DiagnosticInfo", { fg = colors.blue })
hi("DiagnosticHint", { fg = colors.cyan })
hi("DiagnosticUnderlineError", { undercurl = true, sp = colors.red })
hi("DiagnosticUnderlineWarn", { undercurl = true, sp = colors.yellow })
hi("DiagnosticUnderlineInfo", { undercurl = true, sp = colors.blue })
hi("DiagnosticUnderlineHint", { undercurl = true, sp = colors.cyan })
-- LSP Semantic Tokens
hi("@lsp.type.class", { fg = colors.yellow })
hi("@lsp.type.function", { fg = colors.blue })
hi("@lsp.type.variable", { fg = colors.fg })
hi("@lsp.type.parameter", { fg = colors.cyan })
hi("@lsp.type.property", { fg = colors.green })
hi("@lsp.type.enum", { fg = colors.magenta })
-- Treesitter
hi("@comment", { fg = colors.comment, italic = true })
hi("@function", { fg = colors.blue })
hi("@keyword", { fg = colors.red, italic = true })
hi("@string", { fg = colors.green })
hi("@variable", { fg = colors.fg })
hi("@type", { fg = colors.yellow })
hi("@property", { fg = colors.green })
hi("@number", { fg = colors.magenta })
-- Telescope
hi("TelescopeBorder", { fg = colors.comment })
hi("TelescopePromptTitle",{ fg = colors.yellow, bold = true })
hi("TelescopeSelection", { bg = colors.cursorline })
hi("TelescopeMatching", { fg = colors.blue })
-- DAP (Debug)
hi("DebugBreakpoint", { fg = colors.red })
hi("DebugBreakpointLine", { bg = colors.cursorline })
hi("DebugPC", { bg = colors.highlight })
hi("DebugCurrentLine", { underline = true, sp = colors.yellow })
-- Pmenu (Completion)
hi("Pmenu", { fg = colors.fg, bg = colors.cursorline })
hi("PmenuSel", { fg = colors.bg, bg = colors.highlight })
hi("PmenuThumb", { bg = colors.highlight })
-- Notify / Noice / Snacks
hi("NotifyINFOBorder", { fg = colors.blue })
hi("NotifyWARNBorder", { fg = colors.yellow })
hi("NotifyERRORBorder", { fg = colors.red })
hi("NotifyDEBUGBorder", { fg = colors.cyan })
hi("NotifyTRACEBorder", { fg = colors.magenta })
hi("NoicePopup", { bg = colors.cursorline })
hi("NoicePopupmenu", { bg = colors.cursorline, fg = colors.fg })
-- Git Diff
hi("DiffAdd", { fg = colors.green })
hi("DiffChange", { fg = colors.blue })
hi("DiffDelete", { fg = colors.red })
-- Terminal Colors
vim.g.terminal_color_0 = colors.bg
vim.g.terminal_color_1 = colors.red
vim.g.terminal_color_2 = colors.green
vim.g.terminal_color_3 = colors.yellow
vim.g.terminal_color_4 = colors.blue
vim.g.terminal_color_5 = colors.magenta
vim.g.terminal_color_6 = colors.cyan
vim.g.terminal_color_7 = colors.fg
vim.g.terminal_color_8 = colors.comment
vim.g.terminal_color_9 = colors.red
vim.g.terminal_color_10 = colors.green
vim.g.terminal_color_11 = colors.yellow
vim.g.terminal_color_12 = colors.blue
vim.g.terminal_color_13 = colors.magenta
vim.g.terminal_color_14 = colors.cyan
vim.g.terminal_color_15 = colors.fg
-- Apply Snacks highlights unconditionally
hi("SnacksNormal", { fg = colors.fg, bg = colors.bg })
hi("SnacksNormalNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksWinBar", { fg = colors.magenta, bg = colors.bg, bold = true })
hi("SnacksWinBarNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksCursorLine", { bg = colors.highlight })
hi("SnacksCursor", { bg = colors.highlight })
hi("SnacksPickerFile", { fg = colors.green, bold = true })
hi("SnacksPickerDir", { fg = colors.comment })
hi("SnacksPickerPathHidden", { fg = colors.comment, italic = true })
hi("SnacksPickerPathIgnored",{ fg = colors.comment, italic = true })
hi("SnacksPickerPrefix", { fg = colors.yellow })
hi("SnacksPickerNormal", { fg = colors.fg, bg = colors.yellow }) -- Normal picker line
hi("SnacksPickerSelected", { fg = colors.bg, bg = colors.highlight }) -- Selected item (invert fg/bg)
hi("SnacksPickerCursor", { fg = colors.yellow, bg = colors.cursorline })
hi("NormalFloat", { fg = colors.fg, bg = colors.bg })
return colors

151
colors/sistine.lua Normal file
View File

@@ -0,0 +1,151 @@
-- Sistine Theme for Neovim (Extended)
-- Inspired by the Sistine Chapel
local variant = vim.o.background -- "dark" or "light"
local colors = {}
if variant == "dark" then
colors = {
bg = "#1f2428",
fg = "#dfd8c0",
comment = "#8a9286",
blue = "#6d8ec7",
green = "#a5c39f",
yellow = "#dfc17d",
red = "#dba59a",
magenta = "#dba59a", -- repurpose if needed
cursorline= "#2a2e33",
highlight = "#343a40", -- darker than bg2 for visual selects
}
else
colors = {
bg = "#f4f1ec", -- Fresco White
fg = "#80614d", -- Divine Umber
red = "#d18a74", -- Cherub Blush
green = "#7c8957", -- Olive Laurel
yellow = "#c9a04f", -- Renaissance Gold
blue = "#a8c3d1", -- Sky Blue
magenta = "#e5b1aa", -- Angel Pink
cyan = "#c1b6aa", -- Marble Grey
comment = "#a1978e", -- Softened Marble
highlight = "#c9a04f", -- Renaissance Gold
cursorline = "#e8e2db",
}
end
vim.cmd("hi clear")
vim.o.termguicolors = true
vim.g.colors_name = "sistine"
local set = vim.api.nvim_set_hl
local function hi(group, opts) set(0, group, opts) end
-- Core UI
hi("Normal", { fg = colors.fg, bg = colors.bg })
hi("Comment", { fg = colors.comment, italic = true })
hi("CursorLine", { bg = colors.cursorline })
hi("Visual", { bg = colors.highlight })
hi("LineNr", { fg = colors.comment })
hi("CursorLineNr", { fg = colors.yellow, bold = true })
hi("StatusLine", { fg = colors.fg, bg = colors.cursorline })
hi("VertSplit", { fg = colors.comment })
hi("Title", { fg = colors.magenta, bold = true })
hi("Search", { bg = colors.yellow, fg = colors.bg })
hi("IncSearch", { bg = colors.red, fg = colors.bg })
-- Diagnostics (LSP)
hi("DiagnosticError", { fg = colors.red })
hi("DiagnosticWarn", { fg = colors.yellow })
hi("DiagnosticInfo", { fg = colors.blue })
hi("DiagnosticHint", { fg = colors.green })
hi("DiagnosticUnderlineError", { undercurl = true, sp = colors.red })
hi("DiagnosticUnderlineWarn", { undercurl = true, sp = colors.yellow })
hi("DiagnosticUnderlineInfo", { undercurl = true, sp = colors.blue })
hi("DiagnosticUnderlineHint", { undercurl = true, sp = colors.green })
-- LSP Semantic Tokens
hi("@lsp.type.class", { fg = colors.yellow })
hi("@lsp.type.function", { fg = colors.blue })
hi("@lsp.type.variable", { fg = colors.fg })
hi("@lsp.type.parameter", { fg = colors.cyan })
hi("@lsp.type.property", { fg = colors.green })
hi("@lsp.type.enum", { fg = colors.magenta })
-- Treesitter
hi("@comment", { fg = colors.comment, italic = true })
hi("@function", { fg = colors.blue })
hi("@keyword", { fg = colors.red, italic = true })
hi("@string", { fg = colors.green })
hi("@variable", { fg = colors.fg })
hi("@type", { fg = colors.yellow })
hi("@property", { fg = colors.green })
hi("@number", { fg = colors.magenta })
-- Telescope
hi("TelescopeBorder", { fg = colors.comment })
hi("TelescopePromptTitle",{ fg = colors.yellow, bold = true })
hi("TelescopeSelection", { bg = colors.cursorline })
hi("TelescopeMatching", { fg = colors.blue })
-- DAP (Debug)
hi("DebugBreakpoint", { fg = colors.red })
hi("DebugBreakpointLine", { bg = colors.cursorline })
hi("DebugPC", { bg = colors.highlight })
hi("DebugCurrentLine", { underline = true, sp = colors.yellow })
-- Pmenu (Completion)
hi("Pmenu", { fg = colors.fg, bg = colors.cursorline })
hi("PmenuSel", { fg = colors.bg, bg = colors.highlight })
hi("PmenuThumb", { bg = colors.highlight })
-- Notify / Noice / Snacks
hi("NotifyINFOBorder", { fg = colors.blue })
hi("NotifyWARNBorder", { fg = colors.yellow })
hi("NotifyERRORBorder", { fg = colors.red })
hi("NotifyDEBUGBorder", { fg = colors.cyan })
hi("NotifyTRACEBorder", { fg = colors.magenta })
hi("NoicePopup", { bg = colors.cursorline })
hi("NoicePopupmenu", { bg = colors.cursorline, fg = colors.fg })
-- Git Diff
hi("DiffAdd", { fg = colors.green })
hi("DiffChange", { fg = colors.blue })
hi("DiffDelete", { fg = colors.red })
-- Terminal Colors
vim.g.terminal_color_0 = colors.bg
vim.g.terminal_color_1 = colors.red
vim.g.terminal_color_2 = colors.green
vim.g.terminal_color_3 = colors.yellow
vim.g.terminal_color_4 = colors.blue
vim.g.terminal_color_5 = colors.magenta
vim.g.terminal_color_6 = colors.cyan
vim.g.terminal_color_7 = colors.fg
vim.g.terminal_color_8 = colors.comment
vim.g.terminal_color_9 = colors.red
vim.g.terminal_color_10 = colors.green
vim.g.terminal_color_11 = colors.yellow
vim.g.terminal_color_12 = colors.blue
vim.g.terminal_color_13 = colors.magenta
vim.g.terminal_color_14 = colors.cyan
vim.g.terminal_color_15 = colors.fg
-- Bottom of sistine.lua (after terminal colors)
-- Apply Snacks highlights unconditionally
hi("SnacksNormal", { fg = colors.fg, bg = colors.bg })
hi("SnacksNormalNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksWinBar", { fg = colors.magenta, bg = colors.bg, bold = true })
hi("SnacksWinBarNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksCursorLine", { bg = colors.highlight })
hi("SnacksCursor", { bg = colors.highlight })
hi("SnacksPickerFile", { fg = colors.green, bold = true })
hi("SnacksPickerDir", { fg = colors.comment })
hi("SnacksPickerPathHidden", { fg = colors.comment, italic = true })
hi("SnacksPickerPathIgnored",{ fg = colors.comment, italic = true })
hi("SnacksPickerPrefix", { fg = colors.yellow })
hi("SnacksPickerNormal", { fg = colors.fg, bg = colors.yellow }) -- Normal picker line
hi("SnacksPickerSelected", { fg = colors.bg, bg = colors.highlight }) -- Selected item (invert fg/bg)
hi("SnacksPickerCursor", { fg = colors.yellow, bg = colors.cursorline })
hi("NormalFloat", { fg = colors.fg, bg = colors.bg })

195
colors/starry_night.lua Normal file
View File

@@ -0,0 +1,195 @@
local variant = vim.o.background -- "dark" or "light"
local colors = {}
if variant == "dark" then
colors = {
bg = "#0b1220", -- Deep midnight blue
fg = "#d7dbe7", -- Starlight white
comment = "#5b6a8a", -- Muted blue-gray
red = "#d77b6e", -- Rusty crimson (village roofs)
green = "#7ea97e", -- Cypress green
yellow = "#f5d97a", -- Star glow
blue = "#345d9d", -- Ultramarine swirl
magenta = "#9d7cae", -- Violet undertones
cyan = "#5fb8c5", -- Turquoise accent
cursorline = "#162033", -- Soft navy for line highlight
highlight = "#244060", -- Glow for visual mode
}
else
colors = {
bg = "#f7f4ed", -- Soft parchment dawn
fg = "#2f3d59", -- Ink blue
comment = "#7c869f", -- Cloud gray
red = "#c05a50", -- Terracotta red
green = "#608b6f", -- Cypress softened
yellow = "#e6c45d", -- Morning gold
blue = "#476c9b", -- Sky blue
magenta = "#8c6f98", -- Lilac violet
cyan = "#6aa5b4", -- Light teal
cursorline = "#e1ddd3", -- Pale beige
highlight = "#c9b99a", -- Golden-beige for visual select
}
end
vim.cmd("hi clear")
vim.o.termguicolors = true
vim.g.colors_name = "demoiselles"
local set = vim.api.nvim_set_hl
local function hi(group, opts) set(0, group, opts) end
-- Core UI
hi("Normal", { fg = colors.fg, bg = colors.bg })
hi("CursorLine", { bg = colors.cursorline })
hi("Visual", { bg = colors.highlight })
hi("LineNr", { fg = colors.comment })
hi("CursorLineNr",{ fg = colors.yellow, bold = true })
hi("VertSplit", { fg = colors.comment })
hi("StatusLine", { fg = colors.fg, bg = colors.cursorline })
hi("StatusLineNC",{ fg = colors.comment, bg = colors.cursorline })
hi("Pmenu", { fg = colors.fg, bg = colors.cursorline })
hi("PmenuSel", { fg = colors.bg, bg = colors.yellow })
hi("Search", { fg = colors.bg, bg = colors.yellow })
hi("IncSearch", { fg = colors.bg, bg = colors.red })
-- Syntax
hi("Comment", { fg = colors.comment, italic = true })
hi("Constant", { fg = colors.red })
hi("String", { fg = colors.yellow })
hi("Character", { fg = colors.yellow })
hi("Number", { fg = colors.cyan })
hi("Boolean", { fg = colors.cyan })
hi("Float", { fg = colors.cyan })
hi("Identifier", { fg = colors.blue })
hi("Function", { fg = colors.green })
hi("Statement", { fg = colors.blue })
hi("Conditional", { fg = colors.magenta })
hi("Repeat", { fg = colors.magenta })
hi("Label", { fg = colors.yellow })
hi("Operator", { fg = colors.fg })
hi("Keyword", { fg = colors.blue, bold = true })
hi("Exception", { fg = colors.red })
hi("PreProc", { fg = colors.magenta })
hi("Include", { fg = colors.blue })
hi("Define", { fg = colors.magenta })
hi("Macro", { fg = colors.magenta })
hi("PreCondit", { fg = colors.magenta })
hi("Type", { fg = colors.green })
hi("StorageClass",{ fg = colors.green })
hi("Structure", { fg = colors.green })
hi("Typedef", { fg = colors.green })
hi("Special", { fg = colors.cyan })
hi("SpecialChar", { fg = colors.yellow })
hi("Tag", { fg = colors.blue })
hi("Delimiter", { fg = colors.fg })
hi("SpecialComment",{ fg = colors.comment, italic = true })
hi("Debug", { fg = colors.red })
hi("Underlined", { fg = colors.blue, underline = true })
hi("Bold", { bold = true })
hi("Italic", { italic = true })
hi("Error", { fg = colors.red, bold = true })
hi("Todo", { fg = colors.magenta, bold = true })
hi("WarningMsg", { fg = colors.yellow })
hi("ErrorMsg", { fg = colors.red, bold = true })
-- Diagnostics (LSP)
hi("DiagnosticError", { fg = colors.red })
hi("DiagnosticWarn", { fg = colors.yellow })
hi("DiagnosticInfo", { fg = colors.blue })
hi("DiagnosticHint", { fg = colors.cyan })
hi("DiagnosticUnderlineError", { undercurl = true, sp = colors.red })
hi("DiagnosticUnderlineWarn", { undercurl = true, sp = colors.yellow })
hi("DiagnosticUnderlineInfo", { undercurl = true, sp = colors.blue })
hi("DiagnosticUnderlineHint", { undercurl = true, sp = colors.cyan })
-- LSP Semantic Tokens
hi("@lsp.type.class", { fg = colors.yellow })
hi("@lsp.type.function", { fg = colors.blue })
hi("@lsp.type.variable", { fg = colors.fg })
hi("@lsp.type.parameter", { fg = colors.cyan })
hi("@lsp.type.property", { fg = colors.green })
hi("@lsp.type.enum", { fg = colors.magenta })
-- Treesitter
hi("@comment", { fg = colors.comment, italic = true })
hi("@function", { fg = colors.green })
hi("@keyword", { fg = colors.red, italic = true })
hi("@string", { fg = colors.green })
hi("@variable", { fg = colors.fg })
hi("@type", { fg = colors.yellow })
hi("@property", { fg = colors.green })
hi("@number", { fg = colors.magenta })
-- Telescope
hi("TelescopeBorder", { fg = colors.comment })
hi("TelescopePromptTitle",{ fg = colors.yellow, bold = true })
hi("TelescopeSelection", { bg = colors.cursorline })
hi("TelescopeMatching", { fg = colors.blue })
-- DAP (Debug)
hi("DebugBreakpoint", { fg = colors.red })
hi("DebugBreakpointLine", { bg = colors.cursorline })
hi("DebugPC", { bg = colors.highlight })
hi("DebugCurrentLine", { underline = true, sp = colors.yellow })
-- Pmenu (Completion)
hi("Pmenu", { fg = colors.fg, bg = colors.cursorline })
hi("PmenuSel", { fg = colors.bg, bg = colors.highlight })
hi("PmenuThumb", { bg = colors.highlight })
-- Notify / Noice / Snacks
hi("NotifyINFOBorder", { fg = colors.blue })
hi("NotifyWARNBorder", { fg = colors.yellow })
hi("NotifyERRORBorder", { fg = colors.red })
hi("NotifyDEBUGBorder", { fg = colors.cyan })
hi("NotifyTRACEBorder", { fg = colors.magenta })
hi("NoicePopup", { bg = colors.cursorline })
hi("NoicePopupmenu", { bg = colors.cursorline, fg = colors.fg })
-- Git Diff
hi("DiffAdd", { fg = colors.green })
hi("DiffChange", { fg = colors.blue })
hi("DiffDelete", { fg = colors.red })
-- Terminal Colors
vim.g.terminal_color_0 = colors.bg
vim.g.terminal_color_1 = colors.red
vim.g.terminal_color_2 = colors.green
vim.g.terminal_color_3 = colors.yellow
vim.g.terminal_color_4 = colors.blue
vim.g.terminal_color_5 = colors.magenta
vim.g.terminal_color_6 = colors.cyan
vim.g.terminal_color_7 = colors.fg
vim.g.terminal_color_8 = colors.comment
vim.g.terminal_color_9 = colors.red
vim.g.terminal_color_10 = colors.green
vim.g.terminal_color_11 = colors.yellow
vim.g.terminal_color_12 = colors.blue
vim.g.terminal_color_13 = colors.magenta
vim.g.terminal_color_14 = colors.cyan
vim.g.terminal_color_15 = colors.fg
-- Apply Snacks highlights unconditionally
hi("SnacksNormal", { fg = colors.fg, bg = colors.bg })
hi("SnacksNormalNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksWinBar", { fg = colors.magenta, bg = colors.bg, bold = true })
hi("SnacksWinBarNC", { fg = colors.comment, bg = colors.bg })
hi("SnacksCursorLine", { bg = colors.highlight })
hi("SnacksCursor", { bg = colors.highlight })
hi("SnacksPickerFile", { fg = colors.green, bold = true })
hi("SnacksPickerDir", { fg = colors.comment })
hi("SnacksPickerPathHidden", { fg = colors.comment, italic = true })
hi("SnacksPickerPathIgnored",{ fg = colors.comment, italic = true })
hi("SnacksPickerPrefix", { fg = colors.yellow })
hi("SnacksPickerNormal", { fg = colors.fg, bg = colors.yellow }) -- Normal picker line
hi("SnacksPickerSelected", { fg = colors.bg, bg = colors.highlight }) -- Selected item (invert fg/bg)
hi("SnacksPickerCursor", { fg = colors.yellow, bg = colors.cursorline })
hi("NormalFloat", { fg = colors.fg, bg = colors.bg })

View File

@@ -14,12 +14,18 @@ if not vim.loop.fs_stat(lazypath) then
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugins")
-- SET NEOVIM THEME --
vim.o.termguicolors = true
-- vim.cmd "let g:everforest_background = 'hard'"
vim.cmd.colorscheme('nordfox')
-- vim.cmd.colorscheme('sistine')
vim.o.background = "dark"
-- Load Plugins
require("lazy").setup("plugins")
vim.cmd.colorscheme('rose-pine-moon')
vim.keymap.set("n", "<leader>ct", "<cmd>Telescope colorscheme<CR>")
-- LSP --
vim.o.winborder = 'rounded'
@@ -55,12 +61,12 @@ dap.configurations.php = {
port = 9003,
log = true,
-- this is where your file is in the container
-- you need to be in this directory when starting neovim.
pathMappings = {
["/var/www/html/web"] = "${workspaceFolder}"
}
}
}
vim.fn.sign_define('DapBreakpoint',{ text ='🟥', texthl ='', linehl ='', numhl =''})
vim.fn.sign_define('DapStopped',{ text ='▶️', texthl ='', linehl ='', numhl =''})
vim.keymap.set('n', '<leader>?', function() dap.continue() end)
@@ -75,18 +81,3 @@ vim.keymap.set('n', '<leader>db', function()
local widgets = require('dap.ui.widgets')
widgets.centered_float(widgets.scopes)
end)
-- local lspconfig = require 'lspconfig'
-- local configs = require 'lspconfig.configs'
-- if not configs.drupal then
-- configs.drupal = {
-- default_config = {
-- cmd = {'drupal-lsp'},
-- filetypes = {'php', 'module', 'inc', 'theme'},
-- root_dir = function(fname)
-- return lspconfig.util.root_pattern('composer.json', '.git')(fname)
-- end
-- };
-- }
-- end
-- lspconfig.drupal.setup{ autostart = true }

View File

@@ -1,35 +1,41 @@
{
"LuaSnip": { "branch": "master", "commit": "c1851d5c519611dfc451b6582961b2602e0af89b" },
"LuaSnip": { "branch": "master", "commit": "b3104910bb5ebf40492aadffae18f2528fa757d9" },
"ahoy.nvim": { "branch": "main", "commit": "a08ced2a95ac9e0b8cf7048d9daa7c39756b8261" },
"barbar.nvim": { "branch": "master", "commit": "549ee11d97057eae207bafa2c23c315942cca097" },
"cmp-buffer": { "branch": "main", "commit": "b74fab3656eea9de20a9b8116afa3cfc4ec09657" },
"cmp-nvim-lsp": { "branch": "main", "commit": "a8912b88ce488f411177fc8aed358b04dc246d7b" },
"cmp-path": { "branch": "main", "commit": "c6635aae33a50d6010bf1aa756ac2398a2d54c32" },
"cmp-nvim-lsp": { "branch": "main", "commit": "bd5a7d6db125d4654b50eeae9f5217f24bb22fd3" },
"cmp-path": { "branch": "main", "commit": "c642487086dbd9a93160e1679a1327be111cbc25" },
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
"everforest": { "branch": "master", "commit": "ffa5a2032fd41903135fa829bd4b49ba2e1d5d18" },
"everforest": { "branch": "master", "commit": "3fffb096f6ac11372944ac964c60f8af41d8809f" },
"gitsigns.nvim": { "branch": "main", "commit": "23ae90a2a52fdc9b8c50dc61d6c30ebb18521343" },
"harpoon": { "branch": "harpoon2", "commit": "ed1f853847ffd04b2b61c314865665e1dadf22c7" },
"kanagawa.nvim": { "branch": "master", "commit": "debe91547d7fb1eef34ce26a5106f277fbfdd109" },
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
"lazygit.nvim": { "branch": "main", "commit": "b9eae3badab982e71abab96d3ee1d258f0c07961" },
"lspkind.nvim": { "branch": "master", "commit": "d79a1c3299ad0ef94e255d045bed9fa26025dab6" },
"lualine.nvim": { "branch": "master", "commit": "ecfcfee812ef4fee1e86ae8f315c4a045f7da719" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "ce0e87c0be12e7c48296a7513e90430e3eac7f24" },
"mason-nvim-dap.nvim": { "branch": "main", "commit": "4c2cdc69d69fe00c15ae8648f7e954d99e5de3ea" },
"mason.nvim": { "branch": "main", "commit": "9eaedb864cdadc29c6eb7d761a6c0d8aee26c91b" },
"mini.icons": { "branch": "main", "commit": "397ed3807e96b59709ef3292f0a3e253d5c1dc0a" },
"lazygit.nvim": { "branch": "main", "commit": "2305deed25bc61b866d5d39189e9105a45cf1cfb" },
"lspkind.nvim": { "branch": "master", "commit": "3ddd1b4edefa425fda5a9f95a4f25578727c0bb3" },
"lualine.nvim": { "branch": "master", "commit": "b8c23159c0161f4b89196f74ee3a6d02cdc3a955" },
"markview.nvim": { "branch": "main", "commit": "3b9ad1ef6527c220b9b6b0c0d7694c74a95524f4" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "f760507df8c49a4bf46a4d12e1fc616797508979" },
"mason-nvim-dap.nvim": { "branch": "main", "commit": "86389a3dd687cfaa647b6f44731e492970034baa" },
"mason.nvim": { "branch": "main", "commit": "b3689a41dd77e5294498dba9757fb22cc80cbebd" },
"mini.icons": { "branch": "main", "commit": "e8fae66cb400744daeedf6e387347df50271c252" },
"nightfox": { "branch": "main", "commit": "ba47d4b4c5ec308718641ba7402c143836f35aa9" },
"nvim-cmp": { "branch": "main", "commit": "b5311ab3ed9c846b585c0c15b7559be131ec4be9" },
"nvim-dap": { "branch": "master", "commit": "8df427aeba0a06c6577dc3ab82de3076964e3b8d" },
"nvim-dap-ui": { "branch": "master", "commit": "73a26abf4941aa27da59820fd6b028ebcdbcf932" },
"nvim-dap-virtual-text": { "branch": "master", "commit": "df66808cd78b5a97576bbaeee95ed5ca385a9750" },
"nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" },
"nvim-dap": { "branch": "master", "commit": "7367cec8e8f7a0b1e4566af9a7ef5959d11206a7" },
"nvim-dap-ui": { "branch": "master", "commit": "cf91d5e2d07c72903d052f5207511bf7ecdb7122" },
"nvim-dap-virtual-text": { "branch": "master", "commit": "fbdb48c2ed45f4a8293d0d483f7730d24467ccb6" },
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
"nvim-treesitter": { "branch": "master", "commit": "066fd6505377e3fd4aa219e61ce94c2b8bdb0b79" },
"nvim-web-devicons": { "branch": "master", "commit": "1fb58cca9aebbc4fd32b086cb413548ce132c127" },
"oil.nvim": { "branch": "master", "commit": "685cdb4ffa74473d75a1b97451f8654ceeab0f4a" },
"plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" },
"snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" },
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
"nvim-web-devicons": { "branch": "master", "commit": "f6b0920f452bfd7595ee9a9efe5e1ae78e0e2997" },
"oil.nvim": { "branch": "master", "commit": "919e155fdf38e9148cdb5304faaaf53c20d703ea" },
"plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" },
"rose-pine": { "branch": "main", "commit": "72a04c4065345b51b56aed4859ea1d884f734097" },
"snacks.nvim": { "branch": "main", "commit": "5d9dacd09876eed33bde204d224fa7596ac850e8" },
"supermaven-nvim": { "branch": "main", "commit": "07d20fce48a5629686aefb0a7cd4b25e33947d50" },
"telescope-dap.nvim": { "branch": "master", "commit": "783366bd6c1e7fa0a5c59c07db37f49c805a28df" },
"telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" },
"telescope.nvim": { "branch": "master", "commit": "d90956833d7c27e73c621a61f20b29fdb7122709" },
"vim-commentary": { "branch": "master", "commit": "64a654ef4a20db1727938338310209b6a63f60c9" },
"vim-fugitive": { "branch": "master", "commit": "4a745ea72fa93bb15dd077109afbb3d1809383f2" }
"vim-fugitive": { "branch": "master", "commit": "61b51c09b7c9ce04e821f6cf76ea4f6f903e3cf4" }
}

View File

@@ -14,14 +14,17 @@ end)
vim.keymap.set("n", "-", "<cmd>Oil<CR>")
vim.keymap.set("n", "<CR>", "<cmd>w!<CR>")
vim.keymap.set("n", "<leader>nh", "<cmd>noh<CR>")
vim.keymap.set("n", "<leader>wq", "<cmd>wq!<CR>")
vim.keymap.set("n", "<leader>sq", "<cmd>wq!<CR>")
vim.keymap.set("n", "<leader>lg", "<cmd>LazyGit<CR>")
-- Terminal in neovim --
vim.keymap.set('t', '<C-space>', "<C-\\><C-n><C-w>h",{silent = true})
vim.api.nvim_create_autocmd('TermOpen', {
group = vim.api.nvim_create_augroup('open-terminal', { clear = true }),
callback = function()
vim.opt.number = false
vim.opt.relativenumber = false
vim.api.nvim_input("i")
end,
})
local job_id = 0
@@ -41,9 +44,16 @@ vim.cmd("set shiftwidth=2")
vim.cmd("set syntax=on")
vim.cmd("set number")
vim.cmd("set nu")
vim.cmd("set linebreak")
vim.cmd("set termguicolors")
-- vim.cmd("set guicursor=n-v-c:block")
vim.api.nvim_set_option("clipboard","unnamed")
-- Markview
vim.keymap.set("n", "<leader>mv", function()
vim.cmd("Markview splitToggle")
end)
-- Command to turn off diagnostics, if crowding screen
vim.api.nvim_create_user_command("DiagnosticsToggle", function()
local config = vim.diagnostic.config
@@ -55,3 +65,4 @@ vim.api.nvim_create_user_command("DiagnosticsToggle", function()
}
end, { desc = "toggle diagnostic" })
vim.keymap.set("n", "<leader>dtog", "<cmd>DiagnosticsToggle<CR>")

14
lua/plugins/barbar.lua Normal file
View File

@@ -0,0 +1,14 @@
return {
'romgrk/barbar.nvim',
dependencies = {
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons
},
config = function()
local opts = { noremap = true, silent = true }
vim.keymap.set("n", "<C-k>", "<cmd>BufferNext<CR>")
vim.keymap.set("n", "<C-j>", "<cmd>BufferPrevious<CR>")
vim.keymap.set('n', '<C-p>', '<Cmd>BufferPin<CR>')
vim.keymap.set('n', '<C-q>', '<Cmd>BufferClose<CR>')
end
}

10
lua/plugins/colorizer.lua Normal file
View File

@@ -0,0 +1,10 @@
return {
"norcalli/nvim-colorizer.lua",
config = function()
require("colorizer").setup({
'css',
'scss',
'javascript',
})
end,
}

3
lua/plugins/kanagawa.lua Normal file
View File

@@ -0,0 +1,3 @@
return {
"rebelot/kanagawa.nvim"
}

6
lua/plugins/markview.lua Normal file
View File

@@ -0,0 +1,6 @@
-- For `plugins/markview.lua` users.
return {
"OXY2DEV/markview.nvim",
lazy = false,
priority = 49,
};

4
lua/plugins/rosepine.lua Normal file
View File

@@ -0,0 +1,4 @@
return {
"rose-pine/neovim",
name = "rose-pine",
}

View File

@@ -5,6 +5,10 @@ return {
picker = {
ignored = true,
hidden = true,
exclude = {
".git",
".DS_Store",
}
},
explorer = {},
indent = {},

View File

@@ -9,6 +9,10 @@ return {
highlight = { enable = true },
indent = { enable = true },
})
end
end,
dependencies = {
"OXY2DEV/markview.nvim"
},
lazy = false
}