Adds https to url in weather

This commit is contained in:
Thomas Forgione 2019-06-25 14:12:13 +02:00
parent c915c7e54e
commit 20ff8248c0
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
2 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,7 @@ weather() {
} }
main() { main() {
wget -q --tries=10 --timeout=20 --spider tforgione.fr > /dev/null wget -q --tries=10 --timeout=20 --spider https://tforgione.fr > /dev/null
net=$? net=$?
if [ "$1" == "startup" ] if [ "$1" == "startup" ]
then then

View File

@ -60,6 +60,9 @@ set autoindent
" UI CONFIG #########################################################{{{ " UI CONFIG #########################################################{{{
set number set number
if $NVIM_LINE_NUMBER == 'rnu'
set rnu
endif
set showcmd set showcmd
set wildmenu set wildmenu
set lazyredraw set lazyredraw
@ -119,7 +122,7 @@ set noincsearch
" NERDTREE ##########################################################{{{ " NERDTREE ##########################################################{{{
let NERDTreeIgnore = ['\.pyc$','__pycache__'] let NERDTreeIgnore = ['\.pyc$','__pycache__']
set shell=sh set shell=zsh
let g:NERDTreeIndicatorMapCustom = { let g:NERDTreeIndicatorMapCustom = {
\ "Modified" : "✹", \ "Modified" : "✹",
\ "Staged" : "✚", \ "Staged" : "✚",