Things
- disabled auto mounting ccr.ydns.eu - `hl-todo` mode for Emacs
This commit is contained in:
parent
3411b09ab0
commit
d99fd6a3e6
3 changed files with 44 additions and 38 deletions
|
@ -8,13 +8,8 @@ emacsWithPackages (
|
||||||
with epkgs.melpaStablePackages; [ ]
|
with epkgs.melpaStablePackages; [ ]
|
||||||
) ++ (
|
) ++ (
|
||||||
with epkgs.melpaPackages; [
|
with epkgs.melpaPackages; [
|
||||||
aggressive-indent
|
|
||||||
pkgs.emacs28Packages.tree-sitter-langs
|
|
||||||
tree-sitter
|
|
||||||
# ts-fold
|
# ts-fold
|
||||||
tree-edit
|
aggressive-indent
|
||||||
evil-tree-edit
|
|
||||||
pkgs.emacs28Packages.tsc
|
|
||||||
all-the-icons
|
all-the-icons
|
||||||
company
|
company
|
||||||
company-nixos-options
|
company-nixos-options
|
||||||
|
@ -26,6 +21,7 @@ emacsWithPackages (
|
||||||
envrc
|
envrc
|
||||||
evil
|
evil
|
||||||
evil-collection
|
evil-collection
|
||||||
|
evil-tree-edit
|
||||||
fira-code-mode
|
fira-code-mode
|
||||||
go-translate
|
go-translate
|
||||||
good-scroll
|
good-scroll
|
||||||
|
@ -36,6 +32,7 @@ emacsWithPackages (
|
||||||
helm-nixos-options
|
helm-nixos-options
|
||||||
helm-projectile
|
helm-projectile
|
||||||
highlight-indent-guides
|
highlight-indent-guides
|
||||||
|
hl-todo
|
||||||
lispy
|
lispy
|
||||||
lsp-haskell
|
lsp-haskell
|
||||||
lsp-mode
|
lsp-mode
|
||||||
|
@ -53,6 +50,8 @@ emacsWithPackages (
|
||||||
org-roam-ui
|
org-roam-ui
|
||||||
org-superstar
|
org-superstar
|
||||||
origami
|
origami
|
||||||
|
pkgs.emacs28Packages.tree-sitter-langs
|
||||||
|
pkgs.emacs28Packages.tsc
|
||||||
projectile
|
projectile
|
||||||
psc-ide
|
psc-ide
|
||||||
psci
|
psci
|
||||||
|
@ -62,6 +61,8 @@ emacsWithPackages (
|
||||||
scad-mode
|
scad-mode
|
||||||
sudo-utils
|
sudo-utils
|
||||||
symex
|
symex
|
||||||
|
tree-edit
|
||||||
|
tree-sitter
|
||||||
treemacs
|
treemacs
|
||||||
treemacs-evil
|
treemacs-evil
|
||||||
treemacs-icons-dired
|
treemacs-icons-dired
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# FIXME: why this doesn't work anymore?
|
||||||
|
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = [ pkgs.sshfs ];
|
environment.systemPackages = [ pkgs.sshfs ];
|
||||||
|
@ -23,37 +25,37 @@
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
"${target}/amule" = {
|
# "${target}/amule" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/archivio/amule";
|
# device = "${nasUser}@${nasHost}:/mnt/archivio/amule/";
|
||||||
};
|
# };
|
||||||
"${target}/transmission" = {
|
# "${target}/transmission" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/archivio/transmission";
|
# device = "${nasUser}@${nasHost}:/mnt/archivio/transmission/";
|
||||||
};
|
# };
|
||||||
"${target}/calibre" = {
|
# "${target}/calibre" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/archivio/calibre";
|
# device = "${nasUser}@${nasHost}:/mnt/archivio/calibre/";
|
||||||
};
|
# };
|
||||||
"${target}/archivio" = {
|
# "${target}/archivio" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/archivio/archivio";
|
# device = "${nasUser}@${nasHost}:/mnt/archivio/archivio/";
|
||||||
};
|
# };
|
||||||
"${target}/film" = {
|
# "${target}/film" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/film/film";
|
# device = "${nasUser}@${nasHost}:/mnt/film/film/";
|
||||||
};
|
# };
|
||||||
"${target}/syncthing" = {
|
# "${target}/syncthing" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/archivio/syncthing";
|
# device = "${nasUser}@${nasHost}:/mnt/archivio/syncthing/";
|
||||||
};
|
# };
|
||||||
"${target}/aria" = {
|
# "${target}/aria" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/archivio/aria2";
|
# device = "${nasUser}@${nasHost}:/mnt/archivio/aria2/";
|
||||||
};
|
# };
|
||||||
"${target}/musica" = {
|
# "${target}/musica" = {
|
||||||
inherit fsType options;
|
# inherit fsType options;
|
||||||
device = "${nasUser}@${nasHost}:/mnt/film/musica";
|
# device = "${nasUser}@${nasHost}:/mnt/film/musica/";
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,6 +51,9 @@
|
||||||
(use-package origami
|
(use-package origami
|
||||||
:hook ((prog-mode . origami-mode)))
|
:hook ((prog-mode . origami-mode)))
|
||||||
|
|
||||||
|
(use-package hl-todo
|
||||||
|
:hook ((prog-mode . hl-todo-mode)))
|
||||||
|
|
||||||
;; TODO: To move in a different config file
|
;; TODO: To move in a different config file
|
||||||
(when (string-equal system-type "darwin")
|
(when (string-equal system-type "darwin")
|
||||||
(set-face-attribute 'default nil :height 150)
|
(set-face-attribute 'default nil :height 150)
|
||||||
|
|
Loading…
Add table
Reference in a new issue