nvim: stylua

This commit is contained in:
He4eT 2024-01-06 10:38:09 +01:00
commit fe5d99dc77

View file

@ -136,7 +136,7 @@ require('lazy').setup({
keys = { keys = {
{ {
'<leader>j', '<leader>j',
":Ollama<CR>", ':Ollama<CR>',
desc = 'Ollama Menu', desc = 'Ollama Menu',
mode = { 'v' }, mode = { 'v' },
}, },
@ -154,20 +154,19 @@ require('lazy').setup({
Ask_About_Code = false, Ask_About_Code = false,
Simplify_Code = false, Simplify_Code = false,
Improve_Text = { Improve_Text = {
prompt = "Make this text simple and readable. Respond with improved version of this text: ```$sel```", prompt = 'Make this text simple and readable. Respond with improved version of this text: ```$sel```',
extract = false, extract = false,
action = "replace", action = 'replace',
}, },
Modify_Text = { Modify_Text = {
prompt = "Modify this text in the following way: $input\n\n" prompt = 'Modify this text in the following way: $input\n\n' .. '```$sel```',
.. "```$sel```",
extract = false, extract = false,
action = "replace", action = 'replace',
}, },
Use_selection_as_prompt = { Use_selection_as_prompt = {
prompt = "$sel", prompt = '$sel',
extract = false, extract = false,
action = "replace", action = 'replace',
}, },
}, },
}, },