implemented copilot integration as ghost text and simplified some

keyboard shortcuts
This commit is contained in:
venus
2026-07-24 07:24:45 -05:00
parent d04ef25170
commit 04b57e60e6
16 changed files with 436 additions and 131 deletions

View File

@@ -3,24 +3,24 @@
function M.setup()
require('base16-colorscheme').setup {
-- Background tones
base00 = '#121316', -- Default Background
base01 = '#1e2022', -- Lighter Background (status bars)
base02 = '#282a2d', -- Selection Background
base03 = '#8d9199', -- Comments, Invisibles
base00 = '#000000', -- Default Background
base01 = '#110d1a', -- Lighter Background (status bars)
base02 = '#1a1428', -- Selection Background
base03 = '#644c94', -- Comments, Invisibles
-- Foreground tones
base04 = '#c3c6cf', -- Dark Foreground (status bars)
base05 = '#e2e2e6', -- Default Foreground
base06 = '#e2e2e6', -- Light Foreground
base07 = '#e2e2e6', -- Lightest Foreground
base04 = '#b58fff', -- Dark Foreground (status bars)
base05 = '#e8d8ff', -- Default Foreground
base06 = '#e8d8ff', -- Light Foreground
base07 = '#e8d8ff', -- Lightest Foreground
-- Accent colors
base08 = '#ffb4ab', -- Variables, XML Tags, Errors
base09 = '#d7bee4', -- Integers, Constants
base0A = '#bbc7db', -- Classes, Search Background
base0B = '#9fcaff', -- Strings, Diff Inserted
base0C = '#d7bee4', -- Regex, Escape Chars
base0D = '#9fcaff', -- Functions, Methods
base0E = '#bbc7db', -- Keywords, Storage
base0F = '#93000a', -- Deprecated, Embedded Tags
base08 = '#ff6f9b', -- Variables, XML Tags, Errors
base09 = '#d8b4ff', -- Integers, Constants
base0A = '#c79aff', -- Classes, Search Background
base0B = '#b58fff', -- Strings, Diff Inserted
base0C = '#bd80ff', -- Regex, Escape Chars
base0D = '#ab80ff', -- Functions, Methods
base0E = '#b880ff', -- Keywords, Storage
base0F = '#bc0039', -- Deprecated, Embedded Tags
}
end