mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 21:45:10 +01:00
Compare commits
3 Commits
680bf0196b
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| bbf4df0206 | |||
| 48f981edce | |||
| a39cd6de00 |
@@ -19,3 +19,4 @@ Pratchett
|
||||
jailbreaking
|
||||
plugin
|
||||
Readeck
|
||||
enshittification
|
||||
|
||||
3
.vimrc
3
.vimrc
@@ -449,6 +449,9 @@ let g:mdnav#Extensions = '.md, .MD, .markdown, .todo, .txt, .rst'
|
||||
Plug 'lervag/wiki.vim'
|
||||
" Config below, after plug#end()
|
||||
|
||||
" marksman LSP integration (ALE) for advanced Markdown organising
|
||||
Plug 'artempyanykh/marksman'
|
||||
|
||||
|
||||
if $USER != 'root'
|
||||
" notational velocity with fzf: quickly search and open notes
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
#!/bin/bash
|
||||
wget "https://discord.com/api/download?platform=linux&format=deb" -O discord.deb
|
||||
sudo dpkg -i discord.deb
|
||||
|
||||
# Use a uniquely named, temporary directory to download to
|
||||
TMPDIR=$(mktemp -d)
|
||||
|
||||
wget "https://discord.com/api/download?platform=linux&format=deb" -O "${TMPDIR}/discord.deb"
|
||||
sudo dpkg -i "${TMPDIR}/discord.deb"
|
||||
|
||||
# Clean up
|
||||
rm "${TMPDIR}/discord.deb"
|
||||
|
||||
Reference in New Issue
Block a user