Compare commits

...

4 Commits

Author SHA1 Message Date
Lockszmith (@VAST) 5a2c16814b added nvim aliases for better sudo support 2025-02-27 13:54:38 -05:00
Lockszmith (@VAST) 47e6cfe78a fix is_cmd to detect executable binaries only 2025-02-27 13:54:09 -05:00
Lockszmith (@VAST) ae5a5294cc Add ssh config 2025-02-27 13:53:21 -05:00
Lockszmith (@VAST) eecfe1a6dc finkey: improve vastdata links handling 2025-02-27 13:45:51 -05:00
9 changed files with 33 additions and 5 deletions

View File

@ -26,7 +26,8 @@ module.exports = {
match: [
finicky.matchDomains(/.*\.vastdata.com/),
"deeplinks.mindtickle.com*",
"vastdata.mindtickle.com*"
//"vastdata.mindtickle.com*",
"vastdata.*"
],
browser: "Google Chrome"
},

View File

@ -10,9 +10,6 @@
},
{
"path": "."
},
{
"path": "../.."
}
],
"settings": {}

View File

@ -7,3 +7,9 @@ alias lnew='l -tr '
alias ll='l -A'
alias sudo='sudo '
alias nvim='POSTFIX_BUITINS=1 command nvim -p '
alias vi='nvim '
alias vim='nvim '
alias nvimdiff='nvim -d '
alias vimdiff='nvimdiff '

View File

@ -0,0 +1 @@
../../_src.all/private_dot_ssh/config

View File

@ -0,0 +1,9 @@
Host cs-dbg
User gal.szkolnik
HostName 10.27.70.101
Host my-loop sales-devvm-gal-szkolnik-spot
User centos
HostName 10.91.1.10
# vim: set ft=sshconfig sw=4 sts=4 et:

View File

@ -0,0 +1,8 @@
Include config.d/*
Host kateryna.out
HostName szk.li
Port 8080
User sz
# vim: set ft=sshconfig sw=4 sts=4 et:

View File

View File

@ -7,3 +7,9 @@ alias lnew='l --sort=time --reverse '
alias ll='l -A'
alias sudo='sudo '
alias nvim='POSTFIX_BUITINS=1 command nvim -p '
alias vi='nvim '
alias vim='nvim '
alias nvimdiff='nvim -d '
alias vimdiff='nvimdiff '

View File

@ -14,7 +14,7 @@ BASE_0=${BASE_0:-$0}
BASE_SHELL=$(basename "$SHELL")
is_cmd() {
type -- "${@}" 2> /dev/null 1> /dev/null
type -p -- "${@}" 2> /dev/null 1> /dev/null
}
if is_sourced; then