This commit is contained in:
Michael Zhang 2021-08-14 23:06:07 -05:00
parent 31efbdb1d9
commit a332abf1d1
Signed by: michael
GPG Key ID: BDA47A31A3C8EE6B
9 changed files with 25 additions and 8 deletions

View File

@ -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

View File

@ -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

View File

@ -0,0 +1,2 @@
experimental-features = nix-command flakes

View File

@ -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"]
}
}
}

View File

@ -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'

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -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: