fixup! Add clojure support to editor
This commit is contained in:
parent
afc03fe0cf
commit
d066e930a4
1 changed files with 24 additions and 24 deletions
|
@ -14,8 +14,8 @@
|
||||||
# outside of the package
|
# outside of the package
|
||||||
extraPlugins ? [],
|
extraPlugins ? [],
|
||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
kak-crosshairs,
|
kak-crosshairs,
|
||||||
|
|
||||||
# Color theme
|
# Color theme
|
||||||
theme,
|
theme,
|
||||||
|
@ -26,33 +26,33 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let kakrc = (import ./kakrc.nix {
|
let kakrc = (import ./kakrc.nix {
|
||||||
inherit clipboard
|
inherit clipboard
|
||||||
typescript
|
typescript
|
||||||
haskell
|
haskell
|
||||||
clojure
|
clojure
|
||||||
python
|
python
|
||||||
rust
|
rust
|
||||||
nix
|
nix
|
||||||
theme
|
theme
|
||||||
pkgs
|
pkgs
|
||||||
lib;
|
lib;
|
||||||
});
|
});
|
||||||
|
|
||||||
colors = (import ./colors.nix {
|
colors = (import ./colors.nix {
|
||||||
inherit theme
|
inherit theme
|
||||||
pkgs
|
pkgs
|
||||||
lib;
|
lib;
|
||||||
});
|
});
|
||||||
|
|
||||||
kak-lsp = (import ./kak-lsp.nix {
|
kak-lsp = (import ./kak-lsp.nix {
|
||||||
inherit typescript
|
inherit typescript
|
||||||
haskell
|
haskell
|
||||||
clojure
|
clojure
|
||||||
python
|
python
|
||||||
rust
|
rust
|
||||||
nix
|
nix
|
||||||
pkgs
|
pkgs
|
||||||
lib;
|
lib;
|
||||||
});
|
});
|
||||||
|
|
||||||
in (pkgs.kakoune.override {
|
in (pkgs.kakoune.override {
|
||||||
|
|
Loading…
Reference in a new issue