Add Clojure module #4

Merged
lxsameer merged 4 commits from pouya-abbassi/FG42:master into master 2024-05-03 15:57:02 +01:00
4 changed files with 120 additions and 0 deletions

View File

@ -25,4 +25,14 @@
fingerprint = "6F3F A93B 4BD9 C3CA EF38 77E6 384A 12C3 1023 3CC5";
}];
};
pouya = {
email = "me@pouyacode.net";
github = "pouya-abbassi";
git = "pouya-abbassi";
name = "Pouya Abbasi";
keys = [{
fingerprint = "8CC7 EB15 3563 4205 E9C2 AAD9 AF5A 5A4A D4FD 8797";
}];
};
}

View File

@ -0,0 +1,59 @@
# Fg42 - Emacs Editor for advance users
#
# Copyright (c) 2010-2024 Sameer Rahmani <lxsameer@gnu.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# This is the home manager module that exposes FG42. It differs
# from FG42 modules that are structurally the same but used in
# different context
# A list of default FG42 modules to build FG42 with.
{ lib, config, pkgs, makeFG42Drv, ... }:
with lib;
let
cfg = config.fg42.clojure;
deps =
(with pkgs.emacsPackages; [
cider
clojure-ts-mode
flycheck-clj-kondo
]);
drv = makeFG42Drv {
pname = "clojure";
version = config.fg42.version;
buildInputs = deps;
src = ./.;
};
in
{
options.fg42.clojure.enable = mkAndEnableOption "clojure";
config = mkIf cfg.enable {
fg42.elispPackages = [ drv ] ++ deps;
fg42.paths = (with pkgs;[
clojure-lsp
clojure
leiningen
]);
fg42.requires = [ drv.pname ];
meta = {
maintainers = [ maintainers.pouya ];
doc = ./README.md;
};
};
}

View File

@ -0,0 +1,50 @@
;;; FG42 --- The mighty editor for the emacsians -*- lexical-binding: t; -*-
;;
;; Copyright (c) 2010-2024 Sameer Rahmani & Contributors
;;
;; Author: Sameer Rahmani <lxsameer@gnu.org>
;; URL: https://devheroes.codes/FG42/FG42
;; Version: 4.0.0
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;
;;; Commentary:
;;; Code:
(eval-when-compile
(require 'fpkg))
(use! flycheck-clj-kondo
"flycheck linter for clojure using `clj-kondo'."
:after clojure-ts-mode)
(use! paredit
"Minor mode for editing parenthesis."
:commands enable-paredit-mode)
(use! cider
"Clojure(Script) Interactive Development Environment that Rocks!"
:after clojure-ts-mode)
(use! clojure-ts-mode
"Clojure mode"
:mode (("\\.clj\\'" . clojure-ts-mode)
("\\.cljs\\'" . clojure-ts-mode)
("\\.cljc\\'" . clojure-ts-mode))
:hook
(clojure-ts-mode . enable-paredit-mode)
)
(provide 'fg42/clojure)
;;; clojure.el ends here

View File

@ -33,6 +33,7 @@ let
./nix
./c-family
./python
./clojure
./wm
./verilog
./workspace