all repos

init.lua @ 77070ce563c085f42016de634664122c7a750571

my nvim config
2 files changed, 10 insertions(+), 7 deletions(-)
run `stylua .`
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2022-10-27 15:46:20 +0300
Parent: ba600c7
M lua/configs/dap/langs/python.lua

@@ -5,11 +5,13 @@ command = "python",

args = { "-m", "debugpy.adapter" }, } - dap.configurations.python = { { - type = "python", - request = "launch", - name = "Launch file", - program = "${file}", - pythonPath = "python", - } } + dap.configurations.python = { + { + type = "python", + request = "launch", + name = "Launch file", + program = "${file}", + pythonPath = "python", + }, + } end
M lua/plugins.lua

@@ -52,6 +52,7 @@ "karb94/neoscroll.nvim",

config = u.get.setup "neoscroll", keys = { "<C-u>", "<C-d>", "<C-b>", "<C-f>", "<C-y>", "<C-e>" }, } + -- git use { "lewis6991/gitsigns.nvim",