Adds https to url in weather
This commit is contained in:
parent
c915c7e54e
commit
20ff8248c0
|
@ -20,7 +20,7 @@ weather() {
|
|||
}
|
||||
|
||||
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=$?
|
||||
if [ "$1" == "startup" ]
|
||||
then
|
||||
|
|
5
init.vim
5
init.vim
|
@ -60,6 +60,9 @@ set autoindent
|
|||
|
||||
" UI CONFIG #########################################################{{{
|
||||
set number
|
||||
if $NVIM_LINE_NUMBER == 'rnu'
|
||||
set rnu
|
||||
endif
|
||||
set showcmd
|
||||
set wildmenu
|
||||
set lazyredraw
|
||||
|
@ -119,7 +122,7 @@ set noincsearch
|
|||
|
||||
" NERDTREE ##########################################################{{{
|
||||
let NERDTreeIgnore = ['\.pyc$','__pycache__']
|
||||
set shell=sh
|
||||
set shell=zsh
|
||||
let g:NERDTreeIndicatorMapCustom = {
|
||||
\ "Modified" : "✹",
|
||||
\ "Staged" : "✚",
|
||||
|
|
Loading…
Reference in New Issue