ipython+nvim

This commit is contained in:
Henrik Bakken
2025-04-30 22:41:17 +02:00
parent 522a12bddf
commit 8bf741caf1
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -3,3 +3,4 @@ c.TerminalInteractiveShell.colors = "Linux"
c.TerminalInteractiveShell.confirm_exit = False
c.TerminalInteractiveShell.true_color = True
c.TerminalInteractiveShell.editing_mode="vi"
c.TerminalInteractiveShell.emacs_bindings_in_vi_insert_mode = False
+2 -1
View File
@@ -1034,7 +1034,6 @@ local function makespec_snacks()
},
},
toggle = { enabled = true },
words = { enabled = true },
styles = {
lazygit = {
width = 0,
@@ -1069,7 +1068,9 @@ local function makespec_snacks()
{ "<F1>", function() Snacks.picker.help() end, desc = "Help Pages" },
{ "<F9>", function() Snacks.picker.colorschemes() end, desc = "Colorschemes" },
{ "<M-/>", function() Snacks.picker.git_grep() end, desc = "Grep Git Files" },
{ "<leader>sg", function() Snacks.picker.git_grep() end, desc = "Grep Git Files" },
{ "<M-?>", function() Snacks.picker.grep({ untracked = true }) end, desc = "Grep Files" },
{ "<leader>sa", function() Snacks.picker.grep({ untracked = true }) end, desc = "Grep Files" },
{ "<leader>*", function() Snacks.picker.grep_word() end, desc = "Visual selection or word", mode = { "n", "x" }, },
{ "<leader>/", function() Snacks.picker.search_history() end, desc = "Search History" },
{ "<leader>;", function() Snacks.picker.command_history() end, desc = "Command History" },