Compare commits

...

6 Commits

Author SHA1 Message Date
mightypanders
942f00c0d1 packer compiled 2023-04-11 13:34:59 +02:00
mightypanders
808f5a05dc dap 2023-04-11 13:34:51 +02:00
mightypanders
cf7e6e2aea telescope 2023-04-11 13:34:37 +02:00
mightypanders
31bff1d28f html lsp 2023-04-11 13:34:26 +02:00
mightypanders
61292478ba tree 2023-04-11 13:34:09 +02:00
mightypanders
79c2761a9b color and plugins for dap 2023-04-11 13:33:49 +02:00
8 changed files with 130 additions and 58 deletions

0
nvim/lua/dap/jsts.lua Normal file
View File

View File

@ -1,10 +1,12 @@
vim.fn.sign_define('DapBreakpoint', {text='🟥', texthl='', linehl='', numhl=''})
vim.fn.sign_define('DapStopped', {text='⭐️', texthl='', linehl='', numhl=''})
vim.fn.sign_define('DapBreakpoint', { text = '🟥', texthl = '', linehl = '', numhl = '' })
vim.fn.sign_define('DapStopped', { text = '⭐️', texthl = '', linehl = '', numhl = '' })
local dap = require('dap')
local dapui = require("dapui")
local M ={}
local M = {}
local DEBUGGER_PATH = {os.getenv('HOME')..'/.local/share/nvim/mason/packages/js-debug-adapter'}
--local DEBUGGER_PATH = {os.getenv('HOME')..'/.local/share/nvim/mason/packages/js-debug-adapter'}
local DEBUGGER_PATH = vim.fn.stdpath "data" .. "/site/pack/packer/opt/vscode-js-debug"
function M.setup()
dap.adapters.lldb = {
@ -19,7 +21,7 @@ function M.setup()
type = 'lldb',
request = 'launch',
program = function()
return vim.fn.input('Path to executable: ',vim.fn.getcwd() .. '/', 'file')
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
end,
cwd = '${workspaceFolder}',
stopOnEntry = false,
@ -31,22 +33,22 @@ function M.setup()
require('dap-vscode-js').setup {
node_path = "node",
debugger_path = DEBUGGER_PATH,
adapters = {"pwa-node","pwa-chrome","pwa-msedge","node-terminal", "pwa-extensionHost"}
adapters = { "pwa-node", "pwa-chrome", "pwa-msedge", "node-terminal", "pwa-extensionHost" }
}
for _, language in ipairs {"typescript", "javascript"} do
dap.configurations[language] ={{
for _, language in ipairs { "typescript", "javascript" } do
dap.configurations[language] = { {
type = "pwa-node",
request = "launch",
name = "Launch File",
program = "${file}",
cwd = "${workspacefolder}"
cwd = "${workspaceFolder}"
},
{
type = "pwa-node",
request = "attach",
name = "Attach",
processId = require("dap.utils").pick_process,
cwd = "${workspacefolder}"
cwd = "${workspaceFolder}"
},
{
type = "pwa-node",
@ -54,17 +56,27 @@ function M.setup()
name = "Debug Jest Tests",
runtimeExecutable = "node",
runtimeArgs = {
"./node_modules/jest/bin/jestj",
"./node_modules/jest/bin/jest.js",
"--runInBand",
},
rootPath = "${workspaceFolder}",
console = "integratedTerminal",
internalConsoleOptions = "neverOpen",
cwd = "${workspacefolder}"
}}
cwd = "${workspaceFolder}"
} }
end
end
M.setup()
return M
require("dapui").setup()
M.setup()
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
return M

View File

@ -5,7 +5,7 @@ vim.cmd[[set termguicolors]]
--vim.cmd[[let ayucolor = "light"]]
--vim.cmd[[colorscheme ayu]]
vim.cmd[[set background=light]]
vim.cmd[[colorscheme gruvbox]]
vim.cmd([[
runtime macros/sandwich/keymap/surround.vim
]])
vim.cmd.colorscheme "gruvbox"

View File

@ -88,6 +88,22 @@ require('mason-lspconfig').setup_handlers {
}
}
end,
['html'] = function()
require('lspconfig')['html'].setup {
on_attach = on_attach,
flags = lsp_flags,
cmd = { "html-languageserver", "--stdio" },
filetypes = { "html" },
init_options = {
configurationSection = { "html", "css", "javascript" },
embeddedLanguages = {
css = true,
javascript = true
}
},
settings = {}
}
end,
['yamlls'] = function()
require('lspconfig')["yamlls"].setup {
on_attach = on_attach,

View File

@ -88,7 +88,7 @@ require 'nvim-tree'.setup {
},
actions = {
open_file = {
resize_window = false,
resize_window = true,
window_picker = {
exclude = {
filetype = { "notify", "packer", "qf", "diff", "fugitive", "fugitiveblame" },

View File

@ -14,6 +14,11 @@ require("packer").startup(function(use)
"nvim-telescope/telescope-dap.nvim",
{ "jbyuki/one-small-step-for-vimkind", module = "osv" },
"mxsdev/nvim-dap-vscode-js",
{
"microsoft/vscode-js-debug",
opt = true,
run = "npm install --legacy-peer-deps && np guld vsDebugServerBundle && mv dist out",
}
}
}
use("jose-elias-alvarez/null-ls.nvim")
@ -117,4 +122,6 @@ require("packer").startup(function(use)
use { 'shuntaka9576/preview-swagger.nvim' }
use 'tpope/vim-surround'
use 'towolf/vim-helm'
use { 'catppuccin/nvim', as = "catppuccin" }
use 'gpanders/editorconfig.nvim'
end)

View File

@ -1,21 +1,42 @@
require('telescope').load_extension('lsp_handlers')
local trouble = require('trouble.providers.telescope')
require('telescope').setup({
defaults={
mappings={
defaults = {
mappings = {
i = { ["<c-t>"] = trouble.open_with_trouble },
n = { ["<c-t>"] = trouble.open_with_trouble },
},
path_display={"smart"},
path_display = { "smart" },
},
pickers={
find_files={
theme="dropdown",
layout_config={
horizontal= {width=0.5}
pickers = {
live_grep = {
results_title = false,
layout_strategy = 'vertical',
dynamic_preview_title = true,
sorting_strategy = 'ascending',
additional_args = { '--trim' },
layout_config = {
prompt_position = 'top',
width = 0.95,
height = 0.95,
mirror = true,
--flex = {
-- flip_columns = 100,
-- flip_lines = 10,
-- vertical = {
-- mirror = false,
-- },
-- horizontal = {
-- mirror = false
-- },
--},
}
},
find_files = {
theme = "dropdown",
layout_config = {
horizontal = { width = 0.5 }
}
}
},
extensions = {

View File

@ -363,6 +363,11 @@ _G.packer_plugins = {
path = "/home/markus/.local/share/nvim/site/pack/packer/start/vim-gitgutter",
url = "https://github.com/airblade/vim-gitgutter"
},
["vim-helm"] = {
loaded = true,
path = "/home/markus/.local/share/nvim/site/pack/packer/start/vim-helm",
url = "https://github.com/towolf/vim-helm"
},
["vim-highlightedyank"] = {
loaded = true,
path = "/home/markus/.local/share/nvim/site/pack/packer/start/vim-highlightedyank",
@ -373,11 +378,22 @@ _G.packer_plugins = {
path = "/home/markus/.local/share/nvim/site/pack/packer/start/vim-sandwich",
url = "https://github.com/machakann/vim-sandwich"
},
["vim-surround"] = {
loaded = true,
path = "/home/markus/.local/share/nvim/site/pack/packer/start/vim-surround",
url = "https://github.com/tpope/vim-surround"
},
["vim-vsnip"] = {
loaded = true,
path = "/home/markus/.local/share/nvim/site/pack/packer/start/vim-vsnip",
url = "https://github.com/hrsh7th/vim-vsnip"
},
["vscode-js-debug"] = {
loaded = false,
needs_bufread = false,
path = "/home/markus/.local/share/nvim/site/pack/packer/opt/vscode-js-debug",
url = "https://github.com/microsoft/vscode-js-debug"
},
["which-key.nvim"] = {
config = { "\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14which-key\frequire\0" },
loaded = true,
@ -415,14 +431,14 @@ if not vim.g.packer_custom_loader_enabled then
vim.g.packer_custom_loader_enabled = true
end
-- Config for: toggleterm.nvim
time([[Config for toggleterm.nvim]], true)
try_loadstring("\27LJ\2\n8\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\15toggleterm\frequire\0", "config", "toggleterm.nvim")
time([[Config for toggleterm.nvim]], false)
-- Config for: which-key.nvim
time([[Config for which-key.nvim]], true)
try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14which-key\frequire\0", "config", "which-key.nvim")
time([[Config for which-key.nvim]], false)
-- Config for: toggleterm.nvim
time([[Config for toggleterm.nvim]], true)
try_loadstring("\27LJ\2\n8\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\15toggleterm\frequire\0", "config", "toggleterm.nvim")
time([[Config for toggleterm.nvim]], false)
-- Config for: nvim-test
time([[Config for nvim-test]], true)
try_loadstring("\27LJ\2\n7\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\14nvim-test\frequire\0", "config", "nvim-test")