File tree Expand file tree Collapse file tree 12 files changed +52
-93
lines changed Expand file tree Collapse file tree 12 files changed +52
-93
lines changed Original file line number Diff line number Diff line change 41
41
inherit pkgs sources ;
42
42
} ;
43
43
advancedPrograms = import ./programs/advanced.nix {
44
- inherit ( nixpkgs ) lib ;
45
44
inherit pkgs nodePkgs sources ;
46
45
inherit org-babel emacsPkg ;
47
46
} ;
Original file line number Diff line number Diff line change 1
1
{
2
- lib ,
3
2
pkgs ,
4
3
nodePkgs ,
5
4
sources ,
27
26
# for window manager
28
27
rofi = import ./rofi { inherit pkgs ; } ;
29
28
sway = import ./sway ;
30
- swaylock = import ./swaylock { inherit lib pkgs ; } ;
29
+ swaylock = import ./swaylock { inherit pkgs ; } ;
31
30
waybar = import ./waybar { inherit pkgs ; } ;
32
31
in
33
32
[
Original file line number Diff line number Diff line change 16
16
misc = import ./misc ;
17
17
neovim = import ./neovim { inherit pkgs sources ; } ;
18
18
password-store = import ./password-store { inherit pkgs ; } ;
19
- peco = import ./peco { inherit pkgs ; } ;
20
19
fzf = import ./fzf ;
21
20
readline = import ./readline ;
22
21
ripgrep = import ./ripgrep ;
41
40
misc
42
41
password-store
43
42
neovim
44
- peco
45
43
fzf
46
44
readline
47
45
ripgrep
Original file line number Diff line number Diff line change 3
3
enable = true ;
4
4
5
5
settings = {
6
- font_size = 14 .0;
6
+ font_size = 13 .0;
7
7
font_family = "HackGenNerd" ;
8
8
9
9
# thanks. https://github.com/dracula/kitty/blob/master/dracula.conf
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
input * {
2
2
xkb_layout "jp"
3
3
}
4
-
5
- for_window [app_id="FloatingVim"] floating enable
6
- bindsym $mod+i exec XMODIFIERS=@im= ~/.config/sway/ime.sh
Original file line number Diff line number Diff line change 2
2
xdg . configFile = {
3
3
"sway/wallpaper.png" . source = ./wallpaper.png ;
4
4
"sway/config" . source = ./config ;
5
- "sway/ime.sh" = {
6
- source = ./ime.sh ;
7
- executable = true ;
8
- } ;
9
5
"sway/emacs-ime.sh" = {
10
6
source = ./emacs-ime.sh ;
11
7
executable = true ;
Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /usr/bin/env nix-shell
2
+ #! nix-shell -i bash -p bash
2
3
3
4
TEMP_FILE=$( mktemp)
4
5
5
- # Kittyを起動し、専用の設定ファイルを適用し、タイトルを設定
6
- # -c は --config の短縮形
7
6
kitty \
8
- -c ~ /.config/kitty/emacsclient_transparent.conf \
7
+ --config ~ /.config/kitty/emacsclient_transparent.conf \
9
8
--title " Temporary Editor" \
10
9
sh -c "
11
10
emacsclient -c --eval \
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ image=~/.config/swaylock/dracula-wallpaper.svg
2
+
3
+ daemonize
4
+ show-failed-attempts
5
+ clock
6
+ screenshot
7
+ effect-blur=13x13
8
+ effect-vignette=0.5:0.5
9
+ color=6272A4
10
+ font="Inter"
11
+ indicator
12
+ indicator-radius=200
13
+ indicator-thickness=20
14
+ line-color=282A36
15
+ ring-color=BD93F9
16
+ inside-color=282A36
17
+ key-hl-color=50FA7B
18
+ separator-color=00000000
19
+ text-color=F8F8F2
20
+ text-caps-lock-color=""
21
+ line-ver-color=BD93F9
22
+ ring-ver-color=BD93F9
23
+ inside-ver-color=282A36
24
+ text-ver-color=8BE9FD
25
+ ring-wrong-color=FF5555
26
+ text-wrong-color=FF5555
27
+ inside-wrong-color=282A36
28
+ inside-clear-color=282A36
29
+ text-clear-color=8BE9FD
30
+ ring-clear-color=8BE9FD
31
+ line-clear-color=8BE9FD
32
+ line-wrong-color=282A36
33
+ bs-hl-color=8BE9FD
34
+ grace=2
35
+ grace-no-mouse
36
+ grace-no-touch
37
+ datestr=%a, %B %e
38
+ timestr=%I:%M %p
39
+ fade-in=0.4
40
+ ignore-empty-password
You can’t perform that action at this time.
0 commit comments