Compare commits

..

4 Commits

Author SHA1 Message Date
92c2c15d9f
nvim: auto install plugins 2023-01-12 18:18:34 -05:00
a96058043e
nvim: add warnings to gcc bind 2023-01-12 18:14:52 -05:00
4cc883fef4
.xinitrc: add gentoo pipewire launcher 2023-01-12 18:13:50 -05:00
ae5a791f01
wipekey: added script 2023-01-12 18:13:11 -05:00
4 changed files with 2822 additions and 1 deletions

View File

@ -53,7 +53,7 @@ au BufEnter *.c,*.cpp,*.h,*.hpp packadd termdebug
tnoremap <silent> <esc> <c-\><c-n><c-\><c-n> tnoremap <silent> <esc> <c-\><c-n><c-\><c-n>
nnoremap <silent> <f3> :execute "Termdebug" $HOME .. "/.cache/termdebug.out"<cr> nnoremap <silent> <f3> :execute "Termdebug" $HOME .. "/.cache/termdebug.out"<cr>
nnoremap <silent> <f4> :!g++ -g %:p -o ~/.cache/termdebug.out<cr> nnoremap <silent> <f4> :!g++ -Wall -Wextra -Wpedantic -g %:p -o ~/.cache/termdebug.out<cr>
nnoremap <silent> <f5> :Run<cr> nnoremap <silent> <f5> :Run<cr>
nnoremap <silent> <f6> :Stop<cr> nnoremap <silent> <f6> :Stop<cr>
nnoremap <silent> <f8> :Clear<cr> nnoremap <silent> <f8> :Clear<cr>
@ -72,6 +72,11 @@ vnoremap <silent> K :'<,'>Evaluate<cr>
" Plugins " Plugins
" Run PlugInstall if there are missing plugins
autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
\| PlugInstall --sync | source $MYVIMRC
\| endif
call plug#begin() call plug#begin()
filetype plugin indent on filetype plugin indent on

3
src/.local/bin/wipekey Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
gpg --batch --yes --delete-secret-keys A3A5FA72F8E5E54FBEE425057225FE3592EFFA38

File diff suppressed because it is too large Load Diff

View File

@ -8,6 +8,7 @@ wallpaper
xss-lock -- slock & xss-lock -- slock &
dunst & dunst &
xrdb .Xresources xrdb .Xresources
gentoo-pipewire-launcher &
# DBus # DBus
export NO_AT_BRIDGE=1 export NO_AT_BRIDGE=1