File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -219,6 +219,11 @@ require('lazy').setup({
219219 })
220220 end , { desc = ' [/] Fuzzily search in current buffer' })
221221
222+ -- Prompting
223+ vim .keymap .set (' n' , ' <leader>fG' , function ()
224+ builtin .grep_string { search = vim .fn .input ' grep> ' }
225+ end )
226+
222227 -- It's also possible to pass additional configuration options.
223228 -- See `:help telescope.builtin.live_grep()` for information about particular keys
224229 vim .keymap .set (' n' , ' <leader>s/' , function ()
@@ -343,6 +348,9 @@ require('lazy').setup({
343348 local ensure_installed = vim .tbl_keys (servers or {})
344349 vim .list_extend (ensure_installed , {
345350 ' stylua' , -- Used to format Lua code
351+ ' ruff' , -- lint and format for python
352+ ' debugpy' , -- debugger
353+ ' taplo' , -- LSP for toml files
346354 })
347355 require (' mason-tool-installer' ).setup { ensure_installed = ensure_installed }
348356
You can’t perform that action at this time.
0 commit comments