fix: use key file
This commit is contained in:
parent
f60237e0c4
commit
fb16eec496
3 changed files with 4 additions and 2 deletions
|
|
@ -15,8 +15,8 @@ fi
|
||||||
# If you dunno, head to openweathermap.org, and make and account
|
# If you dunno, head to openweathermap.org, and make and account
|
||||||
#(completely free I swear, and then get your API Key and your City ID)
|
#(completely free I swear, and then get your API Key and your City ID)
|
||||||
# I wish I was smart enough to do it like Elena, but this is the top I could do lol
|
# I wish I was smart enough to do it like Elena, but this is the top I could do lol
|
||||||
KEY="{c4dcb6a002f5ce51f7e48c430ebe480d}"
|
KEY=$(cat $HOME/.ssh/weather-key)
|
||||||
ID="{3042030}"
|
ID=$(cat $HOME/.ssh/location)
|
||||||
UNIT="{metric}" #Options are 'metric' and 'imperial'
|
UNIT="{metric}" #Options are 'metric' and 'imperial'
|
||||||
weather=$(curl -sf "http://api.openweathermap.org/data/2.5/weather?APPID="$KEY"&id="$ID"&units="$UNIT"")
|
weather=$(curl -sf "http://api.openweathermap.org/data/2.5/weather?APPID="$KEY"&id="$ID"&units="$UNIT"")
|
||||||
echo $weather
|
echo $weather
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ require("mason-lspconfig").setup({
|
||||||
"bashls", -- shell
|
"bashls", -- shell
|
||||||
"ansiblels", -- ansible
|
"ansiblels", -- ansible
|
||||||
"marksman", -- markdown
|
"marksman", -- markdown
|
||||||
|
"asm_lsp", -- assembly
|
||||||
},
|
},
|
||||||
automatic_installation = true,
|
automatic_installation = true,
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -46,5 +46,6 @@ Plug('nvim-telescope/telescope-project.nvim') -- telescope projects
|
||||||
Plug 'folke/trouble.nvim' -- provides warning/error explanation tab
|
Plug 'folke/trouble.nvim' -- provides warning/error explanation tab
|
||||||
Plug("iamcco/markdown-preview.nvim", -- markdown preview
|
Plug("iamcco/markdown-preview.nvim", -- markdown preview
|
||||||
{ ["do"] = "cd app && yarn install" })
|
{ ["do"] = "cd app && yarn install" })
|
||||||
|
Plug('preservim/tagbar') -- tags on the right
|
||||||
vim.call("plug#end")
|
vim.call("plug#end")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue