Fuck you zombie
This commit is contained in:
parent
438c8d5570
commit
aca95cbca8
2 changed files with 23 additions and 5 deletions
8
.bashrc
8
.bashrc
|
@ -33,7 +33,7 @@ alias creationdate="stat -c '%w'"
|
||||||
alias fixdirectories='find . -type d -exec chmod 755 {} \;'
|
alias fixdirectories='find . -type d -exec chmod 755 {} \;'
|
||||||
alias fixfiles='find . -type f -exec chmod 644 {} \;'
|
alias fixfiles='find . -type f -exec chmod 644 {} \;'
|
||||||
alias reload_wallpaper="xwallpaper --stretch .config/wallpaper.png"
|
alias reload_wallpaper="xwallpaper --stretch .config/wallpaper.png"
|
||||||
alias stealyt='youtube-dl "`xclip -o | sed s/\&.*$//`"'
|
alias stealyt='yt-dlp "`xclip -o | sed s/\&.*$//`"'
|
||||||
spawn() { nohup $@ </dev/null >/dev/null 2>&1 & }
|
spawn() { nohup $@ </dev/null >/dev/null 2>&1 & }
|
||||||
|
|
||||||
# ----[Docker Machine and PS1]----
|
# ----[Docker Machine and PS1]----
|
||||||
|
@ -66,4 +66,8 @@ alias radar="wget https://www.weather.gov/images/mlb/88d/KMLB_radar_loop.gif -O-
|
||||||
|
|
||||||
# ----[Memes]----
|
# ----[Memes]----
|
||||||
alias thonkstream="ffmpeg -i thonksphere.gif -r 200 -filter_complex loop=loop=-1:size=200 -pix_fmt yuv420p -f v4l2 -s 1920x1080 /dev/video50"
|
alias thonkstream="ffmpeg -i thonksphere.gif -r 200 -filter_complex loop=loop=-1:size=200 -pix_fmt yuv420p -f v4l2 -s 1920x1080 /dev/video50"
|
||||||
alias record_audio="ffmpeg -f alsa -ac 2 -i default out.mp3"
|
# alias record_audio="ffmpeg -f alsa -ac 2 -i default out.mp3"
|
||||||
|
function record {
|
||||||
|
ffmpeg -f pulse -i "$(pactl get-default-sink).monitor" -ac 2 -b:a 96k "/tmp/audio-$(date +%Y-%m-%d_%H-%M-%S).opus"
|
||||||
|
}
|
||||||
|
alias qmv="qmv -f do"
|
||||||
|
|
|
@ -5,15 +5,28 @@ filetype off
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
|
|
||||||
Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
||||||
|
|
||||||
Plug 'ms-jpq/coq.artifacts', {'branch': 'artifacts'}
|
Plug 'ms-jpq/coq.artifacts', {'branch': 'artifacts'}
|
||||||
|
|
||||||
Plug 'ms-jpq/coq.thirdparty', {'branch': '3p'}
|
Plug 'ms-jpq/coq.thirdparty', {'branch': '3p'}
|
||||||
|
|
||||||
|
Plug 'neovim/nvim-lspconfig'
|
||||||
|
Plug 'williamboman/nvim-lsp-installer'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" ----[COQ]----
|
" ----[COQ]----
|
||||||
let g:coq_settings = { 'auto_start': 'shut-up' }
|
let g:coq_settings = {'auto_start': 'shut-up', 'display.pum.fast_close': v:false}
|
||||||
|
|
||||||
|
" ----[NVim LSPConfig]----
|
||||||
|
lua << EOF
|
||||||
|
local lsp = require 'lspconfig'
|
||||||
|
local coq = require 'coq'
|
||||||
|
|
||||||
|
lsp.clangd.setup{}
|
||||||
|
lsp.cmake.setup{}
|
||||||
|
|
||||||
|
lsp.clangd.setup{coq.lsp_ensure_capabilities{}}
|
||||||
|
lsp.cmake.setup{coq.lsp_ensure_capabilities{}}
|
||||||
|
EOF
|
||||||
|
|
||||||
" ----[Look and Feel]----
|
" ----[Look and Feel]----
|
||||||
" Syntax hilighting and line numbers
|
" Syntax hilighting and line numbers
|
||||||
|
@ -44,6 +57,7 @@ set guicursor=i:block
|
||||||
" yml
|
" yml
|
||||||
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|
||||||
autocmd FileType yml setlocal ts=2 sts=2 sw=2 expandtab
|
autocmd FileType yml setlocal ts=2 sts=2 sw=2 expandtab
|
||||||
|
autocmd FileType meson setlocal ts=4 sts=4 sw=4 expandtab
|
||||||
|
|
||||||
" ----[Macros]----
|
" ----[Macros]----
|
||||||
" Find and replace macro
|
" Find and replace macro
|
||||||
|
|
Loading…
Reference in a new issue