109 lines
3.4 KiB
Lua
109 lines
3.4 KiB
Lua
vim.opt.termguicolors = true
|
|
vim.notify = require("notify")
|
|
vim.notify.setup({
|
|
background_colour = "#000000"
|
|
})
|
|
local distant = require('distant')
|
|
distant:setup()
|
|
require("oil").setup()
|
|
local telescope = require('telescope.builtin')
|
|
vim.keymap.set('n', '<leader>ff', telescope.find_files, {})
|
|
vim.keymap.set('n', '<leader>fg', telescope.live_grep, {})
|
|
vim.keymap.set('n', '<leader>fb', telescope.buffers, {})
|
|
vim.keymap.set('n', '<leader>fh', telescope.help_tags, {})
|
|
require("telescope").setup({
|
|
extensions = {
|
|
undo = {
|
|
side_by_side = true,
|
|
layout_strategy = "vertical",
|
|
layout_config = {
|
|
preview_height = 0.8,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
require('telescope').load_extension("undo")
|
|
local neogit = require('neogit')
|
|
-- git commit
|
|
-- vim.keymap.set('n', '<leader>gc', neogit.open, { "commit" })
|
|
-- git neo -> Neogit
|
|
vim.keymap.set('n', '<leader>gN', neogit.open, {})
|
|
neogit.setup({
|
|
git_services = {
|
|
["github.com"] = "https://github.com/${owner}/${repository}/compare/${branch_name}?expand=1",
|
|
["bitbucket.org"] = "https://bitbucket.org/${owner}/${repository}/pull-requests/new?source=${branch_name}&t=1",
|
|
["gitlab.com"] = "https://gitlab.com/${owner}/${repository}/merge_requests/new?merge_request[source_branch]=${branch_name}",
|
|
["apps.terminal"] = "http://apps.terminal/${owner}/${repository}/merge_requests/new?merge_request[source_branch]=${branch_name}",
|
|
},
|
|
})
|
|
local dap, dapui = require("dap"), require("dapui")
|
|
dap.adapters.lldb = {
|
|
type = "executable",
|
|
command = lldb_path .. "/bin/lldb-vscode",
|
|
name = "lldb",
|
|
}
|
|
local lldb = {
|
|
name = "Launch lldb",
|
|
type = "lldb", -- matches the adapter
|
|
request = "launch", -- could also attach to a currently running process
|
|
program = function()
|
|
return vim.fn.input(
|
|
"Path to executable: ",
|
|
vim.fn.getcwd() .. "/",
|
|
"file"
|
|
)
|
|
end,
|
|
cwd = "$${workspaceFolder}",
|
|
stopOnEntry = false,
|
|
args = {},
|
|
console = internalConsole,
|
|
runInTerminal = true,
|
|
}
|
|
|
|
dap.configurations.rust = {
|
|
lldb -- different debuggers or more configurations can be used here
|
|
}
|
|
--[[ local opts = {
|
|
dap = {
|
|
adapter = require("rust-tools.dap").get_codelldb_adapter("${pkgs.lldb}/bin/lldb-vscode", "${pkgs.lldb.lib}/lib/liblldb.so"),
|
|
},
|
|
}
|
|
require("rust-tools").setup { opts } ]]
|
|
local dap_breakpoint = {
|
|
error = {
|
|
text = "🟥",
|
|
texthl = "LspDiagnosticsSignError",
|
|
linehl = "",
|
|
numhl = "",
|
|
},
|
|
rejected = {
|
|
text = "",
|
|
texthl = "LspDiagnosticsSignHint",
|
|
linehl = "",
|
|
numhl = "",
|
|
},
|
|
stopped = {
|
|
text = "⭐️",
|
|
texthl = "LspDiagnosticsSignInformation",
|
|
linehl = "DiagnosticUnderlineInfo",
|
|
numhl = "LspDiagnosticsSignInformation",
|
|
},
|
|
}
|
|
|
|
vim.fn.sign_define("DapBreakpoint", dap_breakpoint.error)
|
|
vim.fn.sign_define("DapStopped", dap_breakpoint.stopped)
|
|
vim.fn.sign_define("DapBreakpointRejected", dap_breakpoint.rejected)
|
|
|
|
dapui.setup()
|
|
|
|
-- Auto open and close dapUI
|
|
dap.listeners.after.event_initialized["dapui_config"] = function()
|
|
dapui.open()
|
|
end
|
|
dap.listeners.before.event_terminated["dapui_config"] = function()
|
|
dapui.close()
|
|
end
|
|
dap.listeners.before.event_exited["dapui_config"] = function()
|
|
dapui.close()
|
|
end
|