wip
This commit is contained in:
parent
9e713143dc
commit
5295e62f55
24
configs/proxmark3/preferences.json
Normal file
24
configs/proxmark3/preferences.json
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"Created": "proxmark3",
|
||||||
|
"FileType": "settings",
|
||||||
|
"show.emoji": "emoji",
|
||||||
|
"show.hints": true,
|
||||||
|
"output.dense": false,
|
||||||
|
"os.supports.colors": true,
|
||||||
|
"file.default.savepath": "/Users/ewpratten/Documents/proxmark",
|
||||||
|
"file.default.dumppath": "/Users/ewpratten/Documents/proxmark",
|
||||||
|
"file.default.tracepath": "/Users/ewpratten/Documents/proxmark",
|
||||||
|
"window.plot.xpos": 10,
|
||||||
|
"window.plot.ypos": 30,
|
||||||
|
"window.plot.hsize": 400,
|
||||||
|
"window.plot.wsize": 800,
|
||||||
|
"window.overlay.xpos": 10,
|
||||||
|
"window.overlay.ypos": 490,
|
||||||
|
"window.overlay.hsize": 200,
|
||||||
|
"window.overlay.wsize": 800,
|
||||||
|
"window.overlay.sliders": true,
|
||||||
|
"client.debug.level": "off",
|
||||||
|
"show.bar.mode": "value",
|
||||||
|
"client.exe.delay": 0,
|
||||||
|
"client.timeout": 0
|
||||||
|
}
|
@ -79,6 +79,10 @@ if !exists('g:vscode')
|
|||||||
autocmd FileType usda setlocal nospell
|
autocmd FileType usda setlocal nospell
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
" Enable Leap
|
||||||
|
lua require('leap').add_default_mappings()
|
||||||
|
|
||||||
" Configure Diff rendering
|
" Configure Diff rendering
|
||||||
hi DiffText ctermfg=White ctermbg=none
|
hi DiffText ctermfg=White ctermbg=none
|
||||||
hi DiffFile ctermfg=White ctermbg=none cterm=bold
|
hi DiffFile ctermfg=White ctermbg=none cterm=bold
|
||||||
|
@ -38,6 +38,8 @@ mkdir -p ~/.config/gqrx
|
|||||||
mkdir -p ~/.config/pip
|
mkdir -p ~/.config/pip
|
||||||
mkdir -p ~/.cargo
|
mkdir -p ~/.cargo
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
|
mkdir -p ~/.proxmark3
|
||||||
|
mkdir -p ~/.vim
|
||||||
|
|
||||||
# Mac-specific dirs
|
# Mac-specific dirs
|
||||||
if [ "$(uname)" == "Darwin" ]; then
|
if [ "$(uname)" == "Darwin" ]; then
|
||||||
@ -67,8 +69,11 @@ touch ~/.ssh/config.local
|
|||||||
chmod 644 "$HOME/.ssh/config"
|
chmod 644 "$HOME/.ssh/config"
|
||||||
if type -p chown > /dev/null; then chown $(id -u) "$HOME/.ssh/config"; fi
|
if type -p chown > /dev/null; then chown $(id -u) "$HOME/.ssh/config"; fi
|
||||||
|
|
||||||
# Configure (neo)Vim
|
# Configure vim
|
||||||
ln -sf $EWCONFIG_ROOT/configs/vim/.vimrc ~/.vimrc
|
ln -sf $EWCONFIG_ROOT/configs/vim/.vimrc ~/.vimrc
|
||||||
|
ln -snf $EWCONFIG_ROOT/configs/vim/pack ~/.vim/pack
|
||||||
|
|
||||||
|
# Configure neovim
|
||||||
ln -sf $EWCONFIG_ROOT/configs/nvim/init.vim ~/.config/nvim/init.vim
|
ln -sf $EWCONFIG_ROOT/configs/nvim/init.vim ~/.config/nvim/init.vim
|
||||||
ln -snf $EWCONFIG_ROOT/configs/nvim/pack ~/.config/nvim/pack
|
ln -snf $EWCONFIG_ROOT/configs/nvim/pack ~/.config/nvim/pack
|
||||||
ln -snf $EWCONFIG_ROOT/configs/nvim/third_party ~/.config/nvim/third_party
|
ln -snf $EWCONFIG_ROOT/configs/nvim/third_party ~/.config/nvim/third_party
|
||||||
@ -91,6 +96,9 @@ ln -sf $EWCONFIG_ROOT/configs/cargo/config.toml ~/.cargo/config.toml
|
|||||||
# Termux
|
# Termux
|
||||||
ln -sf $EWCONFIG_ROOT/configs/termux/termux.properties ~/.config/termux/termux.properties
|
ln -sf $EWCONFIG_ROOT/configs/termux/termux.properties ~/.config/termux/termux.properties
|
||||||
|
|
||||||
|
# Proxmark3
|
||||||
|
ln -sf $EWCONFIG_ROOT/configs/proxmark3/preferences.json ~/.proxmark3/preferences.json
|
||||||
|
|
||||||
# Set up user-tempfiles configs
|
# Set up user-tempfiles configs
|
||||||
ln -sf $EWCONFIG_ROOT/configs/user-tmpfiles.d/* ~/.config/user-tmpfiles.d/
|
ln -sf $EWCONFIG_ROOT/configs/user-tmpfiles.d/* ~/.config/user-tmpfiles.d/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user