Adds https to url in weather
This commit is contained in:
parent
c915c7e54e
commit
20ff8248c0
|
@ -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
|
||||||
|
|
5
init.vim
5
init.vim
|
@ -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" : "✚",
|
||||||
|
|
Loading…
Reference in New Issue