diesdas
This commit is contained in:
parent
3c44560b1c
commit
a330d605a4
11 changed files with 28 additions and 7 deletions
|
|
@ -20,7 +20,7 @@
|
|||
src = builtins.fetchGit {
|
||||
url = "ssh://git@ktiu.net/home/git/publishR/";
|
||||
ref = "main";
|
||||
rev = "49838c6ad30d3970c595dc7759edb414f9f0b540";
|
||||
rev = "77a3f6d45df1b2d1dbcfd2475a2c67d9fb7cc3dd";
|
||||
};
|
||||
propagatedBuildInputs = [];
|
||||
nativeBuildInputs = [];
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
src = builtins.fetchGit {
|
||||
url = "ssh://git@ktiu.net/home/git/goethR/";
|
||||
ref = "main";
|
||||
rev = "f92cd29ec696a79810082cb894de195e4e83023c";
|
||||
rev = "93970916e669e81ffea2ded708d3e95b004f5f5d";
|
||||
};
|
||||
propagatedBuildInputs = [];
|
||||
nativeBuildInputs = [];
|
||||
|
|
@ -48,6 +48,7 @@
|
|||
in [
|
||||
bookdown
|
||||
catmaply
|
||||
clipr
|
||||
DAAG
|
||||
devtools
|
||||
dplyr
|
||||
|
|
|
|||
|
|
@ -26,6 +26,10 @@
|
|||
|
||||
services.syncthing.enable = true;
|
||||
|
||||
home.file.".npmrc".text = ''
|
||||
prefix = ${config.xdg.dataHome}/npm/packages
|
||||
'';
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
# commandline
|
||||
|
|
@ -69,6 +73,10 @@
|
|||
libreoffice
|
||||
zotero
|
||||
zathura
|
||||
hunspell
|
||||
hyphen
|
||||
hunspellDicts.de_DE
|
||||
hunspellDicts.th_TH
|
||||
|
||||
# graphics
|
||||
inkscape
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = "fish_add_path ${config.xdg.dataHome}/npm/packages/bin";
|
||||
shellAliases = {
|
||||
r = "R --no-save --no-restore";
|
||||
R = "R --no-save --no-restore";
|
||||
|
|
@ -31,6 +32,9 @@
|
|||
openconnect = "openconnect --config=/home/till/.config/openconnect/config";
|
||||
};
|
||||
shellInit = ''
|
||||
set -gx EDITOR "nvim"
|
||||
set -gx VISUAL "nvim"
|
||||
|
||||
function fish_greeting; end
|
||||
|
||||
function startrloft --description 'Starts R with custom environment'
|
||||
|
|
|
|||
|
|
@ -51,11 +51,11 @@ macro index,pager gt "<change-folder>$trash<enter><refresh>" "Go to tr
|
|||
macro index,pager gj "<change-folder>$my_junk<enter><refresh>" "Go to junk"
|
||||
|
||||
# accounts
|
||||
macro index,pager gu "<change-folder>~/.local/share/mail/imap/gu/Inbox<enter><refresh>" "Go to GU"
|
||||
macro index,pager gu "<change-folder>~/.local/share/mail/gu/Inbox<enter><refresh>" "Go to GU"
|
||||
# macro index,pager gp "<change-folder>+systemli/IMAP/Inbox<enter><refresh>" "Go to Systemli"
|
||||
# macro index,pager gm "<change-folder>+gmail/IMAP/Inbox<enter><refresh>" "Go to Gmail"
|
||||
# macro index,pager gk "<change-folder>+ks/IMAP/Inbox<enter><refresh>" "Go to KS"
|
||||
macro index,pager gi "<change-folder>~/.local/share/mail/imap/ktiu/Inbox<enter><refresh>" "Go to ktiu"
|
||||
macro index,pager gi "<change-folder>~/.local/share/mail/ktiu/Inbox<enter><refresh>" "Go to ktiu"
|
||||
# macro index,pager gf "<change-folder>+dkg/IMAP/Inbox<enter><refresh>" "Go to DKG"
|
||||
|
||||
macro index,pager L "<limit>all\n" "Show all messages (undo limit)"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
xdg.configFile."neomutt/smime.neomuttrc".source = ./smime.neomuttrc;
|
||||
xdg.configFile."neomutt/mailcap".source = ./neomutt_mailcap;
|
||||
accounts.email = {
|
||||
maildirBasePath = "${config.xdg.dataHome}/mail/";
|
||||
maildirBasePath = "${config.xdg.dataHome}/mail";
|
||||
accounts = {
|
||||
gu = {
|
||||
primary = true;
|
||||
|
|
|
|||
1
home/npm.conf
Normal file
1
home/npm.conf
Normal file
|
|
@ -0,0 +1 @@
|
|||
prefix = ${HOME}/.npm-packages
|
||||
1
home/nvim/after/ftplugin/markdown.vim
Normal file
1
home/nvim/after/ftplugin/markdown.vim
Normal file
|
|
@ -0,0 +1 @@
|
|||
setlocal shiftwidth=2
|
||||
|
|
@ -35,6 +35,7 @@ nnoremap gF :edit <cfile><return>
|
|||
nnoremap gx :! xdg-open <cfile><return>
|
||||
|
||||
nnoremap <silent> <tab> :bnext<return>
|
||||
nnoremap <silent> <S-tab> :bnext<return>
|
||||
nnoremap <silent> Q :bdelete<return>
|
||||
nnoremap <c-h> <c-w>h
|
||||
nnoremap <c-j> <c-w>j
|
||||
|
|
|
|||
|
|
@ -129,6 +129,7 @@
|
|||
};
|
||||
xdg.configFile."nvim/autocommmands.vim".source = ./autocommands.vim;
|
||||
xdg.configFile."nvim/ftplugin/markdown.vim".source = ./ftplugin/markdown.vim;
|
||||
xdg.configFile."nvim/after/ftplugin/markdown.vim".source = ./after/ftplugin/markdown.vim;
|
||||
xdg.configFile."nvim/ftplugin/r.vim".source = ./ftplugin/r.vim;
|
||||
xdg.configFile."nvim/ftplugin/rmd.vim".source = ./ftplugin/rmd.vim;
|
||||
xdg.configFile."nvim/syntax/rmd.vim".source = ./syntax/rmd.vim;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
setlocal spell
|
||||
setlocal textwidth=0
|
||||
setlocal shiftwidth=2
|
||||
setlocal syntax=rmd
|
||||
setlocal breakat-=@
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
let
|
||||
tex = (pkgs.texlive.combine {
|
||||
inherit (pkgs.texlive)
|
||||
scheme-medium
|
||||
adjustbox
|
||||
arydshln
|
||||
bbding
|
||||
csquotes
|
||||
|
|
@ -13,14 +13,19 @@ let
|
|||
framed
|
||||
gensymb
|
||||
lastpage
|
||||
lipsum
|
||||
ly1
|
||||
makecell
|
||||
multirow
|
||||
nowidow
|
||||
scheme-medium
|
||||
sourcesanspro
|
||||
tabu
|
||||
tcolorbox
|
||||
threeparttable
|
||||
threeparttablex
|
||||
titling
|
||||
tocloft
|
||||
translations
|
||||
was
|
||||
wrapfig
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue