d
This commit is contained in:
parent
31efbdb1d9
commit
a332abf1d1
9 changed files with 25 additions and 8 deletions
|
@ -45,7 +45,6 @@ exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork
|
|||
exec --no-startup-id nm-applet
|
||||
exec --no-startup-id feh --bg-fill $HOME/.config/i3/wallpaper.jpg
|
||||
# exec --no-startup-id polybar -r michael
|
||||
exec --no-startup-id dunst
|
||||
exec --no-startup-id i3-msg 'workspace 10; exec rocketchat-desktop;'
|
||||
exec --no-startup-id dex -a
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
[memory]
|
||||
command=/usr/lib/i3blocks/memory/memory
|
||||
label=MEM
|
||||
interval=20
|
||||
|
||||
[weather]
|
||||
command=curl -Ss "https://wttr.in/55404?m&format=%25c%25C+%25t+%25p\n"
|
||||
interval=3600
|
||||
|
|
2
dot_config/nix/executable_nix.conf
Normal file
2
dot_config/nix/executable_nix.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
experimental-features = nix-command flakes
|
||||
|
|
@ -3,11 +3,11 @@
|
|||
"python.venvFolders": ["~/.local/share/virtualenvs"],
|
||||
"rust-analyzer.diagnostics.disabled": ["unresolved-proc-macro"],
|
||||
"languageserver": {
|
||||
"ocaml-lsp": {
|
||||
"command": "opam",
|
||||
"args": ["config", "exec", "--", "ocamllsp"],
|
||||
"filetypes": ["ocaml", "reason"]
|
||||
},
|
||||
"ocaml-lsp": {
|
||||
"command": "opam",
|
||||
"args": ["config", "exec", "--", "ocamllsp"],
|
||||
"filetypes": ["ocaml", "reason"]
|
||||
},
|
||||
"haskell": {
|
||||
"command": "ghcide",
|
||||
"args": [
|
||||
|
@ -25,6 +25,13 @@
|
|||
"lhs",
|
||||
"haskell"
|
||||
]
|
||||
},
|
||||
"fstar": {
|
||||
"command": "fstar.exe",
|
||||
"args": ["--lsp"],
|
||||
"rootPatterns": [],
|
||||
"trace.server": "verbose",
|
||||
"filetypes": ["fst", "fsti"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@ Plug 'FStarLang/VimFStar', {'for': 'fstar'}
|
|||
" Plug 'kovisoft/slimv', { 'for': 'lisp' }
|
||||
" Plug 'leafOfTree/vim-svelte-plugin'
|
||||
" Plug 'JuliaEditorSupport/julia-vim'
|
||||
Plug 'FStarLang/VimFStar', {'for': 'fstar'}
|
||||
|
||||
" Plug 'mhinz/vim-startify'
|
||||
Plug 'tomasiser/vim-code-dark'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
SCREENSHOT=$HOME/.cargo/bin/leanshot
|
||||
SCREENSHOT=leanshot
|
||||
# choose some file to save it to
|
||||
FILENAME="$(date +%Y-%m-%d-%H:%M:%S).png"
|
||||
FILE="$HOME/Screenshots/$FILENAME"
|
||||
|
|
|
@ -2,6 +2,8 @@ command_exists exa && alias ls="exa"
|
|||
command_exists garbage && alias rm="garbage put"
|
||||
alias cm="chezmoi"
|
||||
alias kill-gpg-agent="gpgconf --kill gpg-agent"
|
||||
alias dcompose="docker-compose"
|
||||
alias ytmp3="youtube-dl --extract-audio --audio-format mp3 --embed-thumbnail --add-metadata"
|
||||
|
||||
function ced() {
|
||||
# if the file doesn't exist, prompt to make a new one
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[settings]
|
||||
api_url=http://localhost:5800/api/v1/heartbeats.bulk
|
||||
api_url=http://localhost:5800/api
|
||||
api_key=a2b783b6-f6ae-4a58-8cb8-63cc2921ac16
|
||||
|
|
|
@ -61,6 +61,7 @@ fi
|
|||
|
||||
source_if_exists $HOME/.local/scripts/zsh/aliases.zsh
|
||||
[ -f "$HOME/.zsh/extras" ] && source $HOME/.zsh/extras/*.zsh
|
||||
if [ -e /home/michael/.nix-profile/etc/profile.d/nix.sh ]; then . /home/michael/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
|
||||
|
||||
source <(chezmoi completion zsh)
|
||||
# vim: set filetype=zsh:
|
||||
|
|
Loading…
Reference in a new issue