[nvim] deploy nvim through bob
This commit is contained in:
parent
06fbaa0de8
commit
2dfaf3dd35
Binary file not shown.
BIN
dot_bin/bob-arm64
Executable file
BIN
dot_bin/bob-arm64
Executable file
Binary file not shown.
1
dot_bin/executable_bob.tmpl
Normal file
1
dot_bin/executable_bob.tmpl
Normal file
@ -0,0 +1 @@
|
||||
{{- include (printf "dot_bin/bob-%s" .chezmoi.arch) -}}
|
||||
Binary file not shown.
@ -1,8 +1,8 @@
|
||||
{{- if eq .chezmoi.hostname "taupo" -}}
|
||||
export GOPATH=$HOME/.go
|
||||
export PATH=$HOME/projets/tools/bin:$GOPATH/bin:$HOME/.cargo/bin:$HOME/.local/bin:$PATH:/usr/sbin
|
||||
export PATH=$HOME/.local/share/bob/nvim-bin:$HOME/projets/tools/bin:$GOPATH/bin:$HOME/.cargo/bin:$HOME/.local/bin:$PATH:/usr/sbin
|
||||
{{- else -}}
|
||||
export PATH=$HOME/.bin:$PATH
|
||||
export PATH=$HOME/.local/share/bob/nvim-bin:$HOME/.bin:$PATH
|
||||
{{- end }}
|
||||
export EDITOR=vim
|
||||
export FZF_DEFAULT_COMMAND='fdfind --type f --hidden --follow --exclude .git'
|
||||
|
||||
156
private_dot_config/nvim/lua/plugins/dap.lua
Normal file
156
private_dot_config/nvim/lua/plugins/dap.lua
Normal file
@ -0,0 +1,156 @@
|
||||
return {
|
||||
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
{
|
||||
"theHamsta/nvim-dap-virtual-text",
|
||||
config = true,
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
vim.fn.sign_define("DapBreakpoint", { text = "", texthl = "", linehl = "", numhl = "" })
|
||||
vim.fn.sign_define("DapBreakpointCondition", { text = "", texthl = "", linehl = "", numhl = "" })
|
||||
vim.fn.sign_define("DapBreakpointRejected", { text = "", texthl = "", linehl = "", numhl = "" })
|
||||
vim.fn.sign_define("DapLogPoint", { text = "", texthl = "", linehl = "", numhl = "" })
|
||||
vim.fn.sign_define("DapStopped", { text = "", texthl = "", linehl = "", numhl = "" })
|
||||
require("dap").defaults.fallback.terminal_win_cmd = "enew | set filetype=dap-terminal"
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "dap-repl",
|
||||
callback = function()
|
||||
require("dap.ext.autocompl").attach()
|
||||
end,
|
||||
})
|
||||
require("which-key").register({
|
||||
["<leader>db"] = { name = "+breakpoints" },
|
||||
["<leader>ds"] = { name = "+steps" },
|
||||
["<leader>dv"] = { name = "+views" },
|
||||
})
|
||||
end,
|
||||
keys = {
|
||||
{
|
||||
"<leader>dbc",
|
||||
function()
|
||||
require("dap").set_breakpoint(vim.fn.input("Breakpoint condition: "))
|
||||
end,
|
||||
desc = "Conditional Breakpoint",
|
||||
},
|
||||
{
|
||||
"<leader>dbl",
|
||||
function()
|
||||
require("dap").set_breakpoint(nil, nil, vim.fn.input("Log point message"))
|
||||
end,
|
||||
desc = "Logpoint",
|
||||
},
|
||||
{
|
||||
"<leader>dbr",
|
||||
function()
|
||||
require("dap.breakpoints").clear()
|
||||
end,
|
||||
desc = "Remove All",
|
||||
},
|
||||
{ "<leader>dbs", "<CMD>Telescope dap list_breakpoints<CR>", desc = "Show All" },
|
||||
{
|
||||
"<leader>dbt",
|
||||
function()
|
||||
require("dap").toggle_breakpoint()
|
||||
end,
|
||||
desc = "Toggle Breakpoint",
|
||||
},
|
||||
{
|
||||
"<leader>dc",
|
||||
function()
|
||||
require("dap").continue()
|
||||
end,
|
||||
desc = "Continue",
|
||||
},
|
||||
{
|
||||
"<leader>de",
|
||||
function()
|
||||
require("dap.ui.widgets").hover(nil, { border = "none" })
|
||||
end,
|
||||
desc = "Evalutate Expression",
|
||||
mode = { "n", "v" },
|
||||
},
|
||||
{
|
||||
"<leader>dp",
|
||||
function()
|
||||
require("dap").pause()
|
||||
end,
|
||||
desc = "Pause",
|
||||
},
|
||||
{ "<leader>dr", "<CMD>Telescope dap configurations<CR>", desc = "Run" },
|
||||
{
|
||||
"<leader>dsb",
|
||||
function()
|
||||
require("dap").step_back()
|
||||
end,
|
||||
desc = "Step Back",
|
||||
},
|
||||
{
|
||||
"<leader>dsc",
|
||||
function()
|
||||
require("dap").run_to_cursor()
|
||||
end,
|
||||
desc = "Run to Cursor",
|
||||
},
|
||||
{
|
||||
"<leader>dsi",
|
||||
function()
|
||||
require("dap").step_into()
|
||||
end,
|
||||
desc = "Step Into",
|
||||
},
|
||||
{
|
||||
"<leader>dso",
|
||||
function()
|
||||
require("dap").step_over()
|
||||
end,
|
||||
desc = "Step Over",
|
||||
},
|
||||
{
|
||||
"<leader>dsx",
|
||||
function()
|
||||
require("dap").step_out()
|
||||
end,
|
||||
desc = "Step Out",
|
||||
},
|
||||
{
|
||||
"<leader>dx",
|
||||
function()
|
||||
require("dap").terminate()
|
||||
end,
|
||||
desc = "Terminate",
|
||||
},
|
||||
{
|
||||
"<leader>dvf",
|
||||
function()
|
||||
require("dap.ui.widgets").centered_float(require("dap.ui.widgets").frames, { border = "none" })
|
||||
end,
|
||||
desc = "Show Frames",
|
||||
},
|
||||
{
|
||||
"<leader>dvr",
|
||||
function()
|
||||
require("dap").repl.open(nil, "20split")
|
||||
end,
|
||||
desc = "Show Repl",
|
||||
},
|
||||
{
|
||||
"<leader>dvs",
|
||||
function()
|
||||
require("dap.ui.widgets").centered_float(require("dap.ui.widgets").scopes, { border = "none" })
|
||||
end,
|
||||
desc = "Show Scopes",
|
||||
},
|
||||
{
|
||||
"<leader>dvt",
|
||||
function()
|
||||
require("dap.ui.widgets").centered_float(require("dap.ui.widgets").threads, { border = "none" })
|
||||
end,
|
||||
desc = "Show Threads",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
7
private_dot_config/nvim/lua/plugins/lsp-lines.lua
Normal file
7
private_dot_config/nvim/lua/plugins/lsp-lines.lua
Normal file
@ -0,0 +1,7 @@
|
||||
vim.diagnostic.config({ virtual_text = false }) --better inline lsp diagnostics
|
||||
return {
|
||||
"https://git.sr.ht/~whynothugo/lsp_lines.nvim",
|
||||
config = function()
|
||||
require("lsp_lines").setup()
|
||||
end,
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user