Run formatter on all lua files
This commit is contained in:
parent
2eca6c0d56
commit
56f0d00f96
25 changed files with 659 additions and 630 deletions
|
@ -1,15 +1,16 @@
|
|||
return { 'ryicoh/deepl.vim',
|
||||
return {
|
||||
'ryicoh/deepl.vim',
|
||||
keys = {
|
||||
|
||||
{ '<leader><C-e>', function() vim.fn['deepl#v']("EN") end, mode = 'v' },
|
||||
{ '<leader><C-d>', function() vim.fn['deepl#v']("DE") end, mode = 'v' },
|
||||
},
|
||||
dependencies = {{ 'tsuyoshicho/vim-pass',
|
||||
init = function ()
|
||||
dependencies = { {
|
||||
'tsuyoshicho/vim-pass',
|
||||
init = function()
|
||||
vim.g.pass_use_agent = 1
|
||||
end
|
||||
}},
|
||||
config = function ()
|
||||
} },
|
||||
config = function()
|
||||
vim.g['deepl#endpoint'] = "https://api-free.deepl.com/v2/translate"
|
||||
vim.g['deepl#auth_key'] = vim.fn['pass#get']('web/deepl.com', 'apikey')
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue