]> Freerunner's - dabruin.kak/commitdiff
first version without markdown support
authorThomas Teixeira <thomas.teixeira@startmail.com>
Wed, 1 Nov 2023 21:39:03 +0000 (22:39 +0100)
committerThomas Teixeira <thomas.teixeira@startmail.com>
Wed, 1 Nov 2023 21:39:03 +0000 (22:39 +0100)
LICENSES/ISC.txt [new file with mode: 0644]
LICENSES/Unlicense.txt [new file with mode: 0644]
README.md [new file with mode: 0644]
dabruin.kak [new file with mode: 0644]

diff --git a/LICENSES/ISC.txt b/LICENSES/ISC.txt
new file mode 100644 (file)
index 0000000..4921131
--- /dev/null
@@ -0,0 +1,13 @@
+Copyright (c) 2015-2020, Ivan Tham <pickfire@riseup.net>
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/LICENSES/Unlicense.txt b/LICENSES/Unlicense.txt
new file mode 100644 (file)
index 0000000..fdddb29
--- /dev/null
@@ -0,0 +1,24 @@
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to <https://unlicense.org>
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/dabruin.kak b/dabruin.kak
new file mode 100644 (file)
index 0000000..41ead63
--- /dev/null
@@ -0,0 +1,63 @@
+##
+## brun.kak by nasmevka
+## file structure based on base16.kak
+##
+
+evaluate-commands %sh{
+    background='rgb:242124'
+    foreground='rgb:F5F5F5'
+    accent='rgb:FFB852'
+    grey='rgb:B2BECA'
+    deep='rgb:3D4C59'
+    ## code
+    cat <<-COLORSCHEME
+        face global value ${foreground}+di
+        face global type default+bu
+        face global variable ${foreground}+i
+        face global module default@string
+        face global function ${accent}+di
+        face global string ${grey}+i
+        face global keyword ${accent}
+        face global operator ${foreground}
+        face global attribute ${foreground}+i
+        face global comment ${deep}
+        face global documentation comment
+        face global meta ${accent}
+        face global builtin default+i
+
+        face global title ${foreground}
+        face global header ${foreground}
+        face global mono ${foreground}
+        face global block ${foreground}
+        face global link ${foreground}
+        face global bullet ${foreground}
+        face global list ${foreground}
+
+        face global Default ${foreground},${background}
+        face global PrimarySelection ${foreground}+rfg
+        face global SecondarySelection ${grey}+rfg
+        face global PrimaryCursor ${foreground},${background}+rfg
+        face global SecondaryCursor ${grey},${background}+rfg
+        face global PrimaryCursorEol default+dfg@PrimaryCursor
+        face global SecondaryCursorEol default+dfg@SecondaryCursor
+        face global LineNumbers ${grey},${background}+d
+        face global LineNumbersWrapped ${background},${background}
+        face global LineNumberCursor ${accent},${background}+b
+        face global MenuForeground ${accent},${background}+rb
+        face global MenuBackground ${foreground},${background}
+        face global MenuInfo ${accent}@MenuBackground
+        face global Information ${foreground},${background}
+        face global Error ${foreground},${background}
+        face global DiagnosticError ${foreground}
+        face global DiagnosticWarning ${foreground}
+        face global StatusLine ${foreground},${background}
+        face global StatusLineMode ${accent}
+        face global StatusLineInfo ${grey}
+        face global StatusLineValue ${grey}
+        face global StatusCursor ${accent},${background}+r
+        face global Prompt ${accent},${background}
+        face global MatchingChar default+rfg@PrimaryCursor
+        face global BufferPadding ${deep},${background}+F
+        face global Whitespace ${deep},${background}+f
+       COLORSCHEME
+}