Skip to content

Commit

Permalink
add kakoune color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Dec 23, 2019
1 parent 92ff9ff commit f4bf02a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
16 changes: 13 additions & 3 deletions dotfiles/kakoune.nix
@@ -1,13 +1,20 @@
{ pkgs, lib, ... }: {
{ pkgs, lib, ... }:
let
sources = import ../nix/sources.nix;
in
{
programs.kakoune = {
enable = true;
config = {
# colorScheme = "";
colorScheme = "gotham";
scrollOff = {
columns = 0;
lines = 5;
};
numberLines.enable = true;
numberLines = {
enable = true;
separator = " ";
};
showMatching = true;
ui.enableMouse = true;
wrapLines = {
Expand All @@ -17,4 +24,7 @@
};
};
};

# plugins
home.file.".config/kak/colors".source = sources.kakoune-colors;
}
12 changes: 12 additions & 0 deletions nix/sources.json
Expand Up @@ -115,6 +115,18 @@
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz",
"vim": "true"
},
"kakoune-colors": {
"branch": "master",
"description": "Color schemes for kakoune",
"homepage": "http://kakoune.org",
"owner": "Delapouite",
"repo": "kakoune-colors",
"rev": "390b97672227f65b87e476aa925acd3a898fc339",
"sha256": "1b9flzwdakffcg7lnrlisp291scnhnii86pg683vqllpwfkgazd9",
"type": "tarball",
"url": "https://github.com/Delapouite/kakoune-colors/archive/390b97672227f65b87e476aa925acd3a898fc339.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"lightline-ale": {
"branch": "master",
"description": "TODO",
Expand Down

0 comments on commit f4bf02a

Please sign in to comment.