-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoci.nix
145 lines (144 loc) · 2.4 KB
/
foci.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{ pkgs, ... }:
let
emacsGtk = pkgs.emacs29-gtk3;
emacsPgtk = pkgs.emacs29-pgtk;
emacsWithPackages = (pkgs.emacsPackagesFor emacsPgtk).emacsWithPackages;
in
emacsWithPackages (epkgs: (with epkgs.melpaPackages; [
# Use docker-tramp for emacs 28.x, for newer emacs, builtin tramp container should suffice
# docker-tramp
codespaces
winum
dockerfile-mode
font-lock-studio
all-the-icons
all-the-icons-dired
realgud
powerline
flycheck
htmlize
highlight-symbol
projectile
window-purpose
polymode
visual-fill-column
fill-column-indicator
demap
paradox
vline
package-build
edit-indirect
editorconfig
ansi
memoize
gptel
f
s
yasnippet
origami
which-key
# org
toc-org
ox-gfm
org-bullets
org-roam
# terms
vterm
xterm-color
# company
company
company-box
company-posframe
company-quickhelp
company-shell
company-math
# magit
magit
forge
magit-delta
# helm
helm
helm-gtags
helm-xref
# flyspell
flyspell-correct
flyspell-correct-helm
# langs
nix-mode
php-mode
kotlin-mode
nginx-mode
json-mode
groovy-mode
cmake-mode
company-auctex # Tex
company-c-headers # C
disaster # C
jq-mode # jq
slime # Lisp
slime-company # Lisp
aggressive-indent # Lisp alike (elisp)
paredit # Lisp alike (elisp)
elpy # Python
conda # Python
# jupyter
ninja-mode
opencl-c-mode
racket-mode
lua-mode
meson-mode
julia-mode
pyim
rust-mode # Rust
cargo # Rust
scala-mode
toml-mode
vala-mode
yaml-mode
cython-mode
ess # R/S
geiser # Scheme
go-mode
haskell-mode
markdown-mode
markdown-toc
yaml-mode
powershell
sage-shell-mode
# lsp mode
lsp-mode
lsp-ui
# lsp ext
lsp-treemacs
lsp-docker
lsp-origami
lsp-grammarly
dap-mode
# lsp langs
lsp-metals
lsp-haskell
lsp-java
# treemacs
treemacs
# mu
mu4e-alert
]) ++ (with epkgs.elpaPackages; [
auctex # ; LaTeX mode
sml-mode
project
rainbow-mode
debbugs
csv-mode
minimap
xref
xr
eldoc
]) ++ (with epkgs.nongnuPackages; [
eat
]) ++ (with epkgs; [
bind-key
cask
use-package
]) ++ (with pkgs; [
mu
]))