dc07c649de
kak-lsp uses these faces to mark errors inside the buffer, instead of the Error face which is much more jarring, and which does not have an associated warning face. Since the :spell command marks errors inside the buffer, it's also updated to use this new face. Adding these faces to Kakoune makes it more likely that colorschemes will automatically do the right thing when used with kak-lsp, and makes it possible to use a subtle appearance (like curly underlines) for in-buffer errors while keeping Kakoune errors bold and jarring as they should be.
53 lines
1.5 KiB
Plaintext
53 lines
1.5 KiB
Plaintext
# Kakoune default color scheme
|
|
|
|
# For Code
|
|
face global value red
|
|
face global type yellow
|
|
face global variable green
|
|
face global module green
|
|
face global function cyan
|
|
face global string magenta
|
|
face global keyword blue
|
|
face global operator yellow
|
|
face global attribute green
|
|
face global comment cyan
|
|
face global documentation comment
|
|
face global meta magenta
|
|
face global builtin default+b
|
|
|
|
# For markup
|
|
face global title blue
|
|
face global header cyan
|
|
face global mono green
|
|
face global block magenta
|
|
face global link cyan
|
|
face global bullet cyan
|
|
face global list yellow
|
|
|
|
# builtin faces
|
|
face global Default default,default
|
|
face global PrimarySelection white,blue+fg
|
|
face global SecondarySelection black,blue+fg
|
|
face global PrimaryCursor black,white+fg
|
|
face global SecondaryCursor black,white+fg
|
|
face global PrimaryCursorEol black,cyan+fg
|
|
face global SecondaryCursorEol black,cyan+fg
|
|
face global LineNumbers default,default
|
|
face global LineNumberCursor default,default+r
|
|
face global MenuForeground white,blue
|
|
face global MenuBackground blue,white
|
|
face global MenuInfo cyan
|
|
face global Information black,yellow
|
|
face global Error black,red
|
|
face global DiagnosticError red
|
|
face global DiagnosticWarning yellow
|
|
face global StatusLine cyan,default
|
|
face global StatusLineMode yellow,default
|
|
face global StatusLineInfo blue,default
|
|
face global StatusLineValue green,default
|
|
face global StatusCursor black,cyan
|
|
face global Prompt yellow,default
|
|
face global MatchingChar default,default+b
|
|
face global Whitespace default,default+fd
|
|
face global BufferPadding blue,default
|