File tree Expand file tree Collapse file tree 8 files changed +46
-9
lines changed Expand file tree Collapse file tree 8 files changed +46
-9
lines changed Original file line number Diff line number Diff line change @@ -63,5 +63,5 @@ urxvt.scrollWithBuffer: true
63
63
!! urls
64
64
urxvt.matcher.button: C1
65
65
urxvt.perl-ext-common: default,matcher
66
- urxvt.url-launcher: firefox
66
+ urxvt.url-launcher: firefox-devedition
67
67
Original file line number Diff line number Diff line change 1
1
; ; *scratch*
2
2
(setq initial-major-mode 'org-mode )
3
3
4
-
5
4
; ; pretty
6
5
(set-default-font " Fira Code" )
7
6
70
69
(setq flymake-start-syntax-check-on-newline nil )
71
70
(setq flycheck-check-syntax-automatically '(save mode-enabled))
72
71
72
+ ; ; CLOS
73
+ (use-package slime
74
+ :ensure t
75
+ :config
76
+ (setq inferior-lisp-program " ~/.nix-profile/bin/sbcl" )
77
+ (setq slime-contribs '(slime-fancy)))
73
78
74
79
75
80
; ; keybinds
97
102
(setq indent-tabs-mode t )
98
103
(setq tab-width 2 )
99
104
(setq python-indent 8 )))
105
+ (add-hook 'css-mode-hook
106
+ (lambda ()
107
+ (setq css-indent-offset 2 )))
100
108
101
109
(load-file (let ((coding-system-for-read 'utf-8 ))
102
110
(shell-command-to-string " agda-mode locate" )))
112
120
(desktop-save " ~/.emacs.d/.#desktop#" ))
113
121
(global-set-key (kbd " C-c r l" ) 'load-desktop-default )
114
122
(global-set-key (kbd " C-c r s" ) 'save-desktop-default )
123
+
124
+
125
+ ; ; quicklisp
126
+
127
+ (load (expand-file-name " ~/quicklisp/slime-helper.el" ))
128
+ ; ; Replace "sbcl" with the path to your implementation
129
+ (setq inferior-lisp-program " sbcl" )
Original file line number Diff line number Diff line change 102
102
alias setusint='setxkbmap -layout us -variant intl'
103
103
alias setus='setxkbmap -layout us'
104
104
alias setdvp='setxkbmap -layout us -variant dvp'
105
+ alias ss='scrot -s'
105
106
# }}}
Original file line number Diff line number Diff line change
1
+ # anime folder
1
2
animu=/home/aigis/Anime
3
+
4
+ # do not delete bash_history
5
+ export HISTSIZE=
6
+ export HISTFILESIZE=
7
+
2
8
## Programming envs {{{
3
9
# haskell
4
10
export PATH=$PATH:~/.cabal/bin:~/.local/bin
@@ -10,7 +16,7 @@ export PATH="$PATH:$HOME/.cargo/bin"
10
16
eval `opam config env`
11
17
12
18
# rakudo
13
- export PATH=$PATH:~/build/rakudo/rakudo-star-2018.04/install/bin/:~/build/rakudo/rakudo-star-2018.04/install/share/perl6/site/bin
19
+ # export PATH=$PATH:~/build/rakudo/rakudo-star-2018.04/install/bin/:~/build/rakudo/rakudo-star-2018.04/install/share/perl6/site/bin
14
20
# }}}
15
21
16
22
## Software envs {{{
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Config { font = "xft:Fira Code:size=10"
10
10
, overrideRedirect = False
11
11
, border = BottomBM 0
12
12
, borderColor = " #3e3e3e"
13
- , commands = [ Run Network " enp3s0 " [ " -t" , " d:<rx> u:<tx>"
13
+ , commands = [ Run Network " wlp1s0 " [ " -t" , " d:<rx> u:<tx>"
14
14
, " -L" , " 100"
15
15
, " -H" , " 700"
16
16
, " -m" , " 4"
@@ -63,6 +63,5 @@ Config { font = "xft:Fira Code:size=10"
63
63
]
64
64
, sepChar = " %"
65
65
, alignSep = " }{"
66
- , template = " %StdinReader% }{%mpd % / %disku% / %coretemp% / %memory% / %enp3s0 % / <fc=#ede7b4>%date%</fc> "
66
+ , template = " %StdinReader% }{%battery % / %disku% / %coretemp% / %memory% / %wlp1s0 % / <fc=#ede7b4>%date%</fc> "
67
67
}
68
-
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ main = do
162
162
]
163
163
`additionalKeysP`
164
164
[(otherMasks ++ " M-" ++ [key], screenWorkspace scr >>= flip whenJust (windows . action))
165
- | (key, scr) <- zip " wer" [2 , 0 ,1 ]
165
+ | (key, scr) <- zip " wer" [0 ,1 , 2 ]
166
166
, (otherMasks, action) <- [ (" " , W. view)
167
167
, (" S-" , W. shift)]
168
168
]
Original file line number Diff line number Diff line change 40
40
#windowManager.i3.enable = true;
41
41
windowManager . xmonad . enable = true ;
42
42
windowManager . xmonad . extraPackages = self : [ self . xmonad-contrib ] ;
43
- windowManager . xmonad . haskellPackages = pkgs . haskell . packages . ghc822 ;
43
+ windowManager . xmonad . haskellPackages = pkgs . haskell . packages . ghc865 ;
44
44
windowManager . default = "xmonad" ;
45
45
} ;
46
46
sshd . enable = true ;
95
95
maxJobs = pkgs . stdenv . lib . mkForce 4 ;
96
96
} ;
97
97
98
+ virtualisation . virtualbox . host . enable = true ;
99
+
98
100
# List packages installed in system profile. To search, run:
99
101
# $ nix search wget
100
102
environment . systemPackages = with pkgs ; [
103
+ ahoviewer
104
+ anki
101
105
binutils
102
106
cabal2nix
107
+ curl
103
108
emacs
104
109
feh
110
+ ffmpeg
105
111
firefox-devedition-bin
106
112
git
107
113
haskellPackages . hlint
108
114
haskellPackages . xmobar
109
115
htop
110
116
jpegoptim
117
+ kdeApplications . kio-extras
118
+ keepassxc
119
+ krita
120
+ krusader
111
121
mpv
112
122
networkmanager
113
123
nitrogen
114
124
nix-bash-completions
125
+ nomacs
115
126
ntfs3g
116
127
optipng
117
128
p7zip
118
129
pavucontrol
130
+ gnome3 . polari
119
131
psmisc
120
132
racket
121
133
ripgrep
122
134
rofi
135
+ rustup
123
136
rxvt_unicode
124
137
scrot
138
+ spotify
139
+ tmsu
125
140
unzip
126
141
vim
127
142
# vimus
128
143
wget
129
144
which
145
+ wine
130
146
xlibs . xsetroot
131
147
xscreensaver
132
148
zathura
Submodule dots updated from dd1e258 to add0849
You can’t perform that action at this time.
0 commit comments