2022-08-18 04:13:50 +02:00
|
|
|
--[[
|
|
|
|
&&&
|
|
|
|
&##& █████╗ ██╗ ███████╗███╗ ███╗██╗
|
|
|
|
&##& ██╔══██╗██║ ██╔════╝████╗ ████║██║
|
|
|
|
BB& ███████║██║ █████╗ ██╔████╔██║██║
|
|
|
|
&GB & ██╔══██║██║ ██╔══╝ ██║╚██╔╝██║██║
|
|
|
|
&GB &BGBBBBBBBB###& ██║ ██║███████╗███████╗██║ ╚═╝ ██║██║
|
|
|
|
GG &GGGGGGGGGGGGGB#& ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝╚═╝
|
|
|
|
#P# &&#BGGGGGGGGGGG# nvim plugins
|
|
|
|
BP& &GGGGGGGGGB#
|
2023-04-15 21:02:08 +02:00
|
|
|
&#BGPP& &#BGGGGGGGB# * tldr: managed with lazy.nvim
|
2022-08-18 04:13:50 +02:00
|
|
|
&#BGGGGGPP& &&#BGGGGGGB##& - lsp: integrated + nvim-lspconfig
|
|
|
|
&#GPPPGGGGGBPB &&##BGGGGGBB#&& - completion: nvim-cmp + LuaSnip
|
|
|
|
#PPPPPPPGGPG BP& &&##BBGGGGGGBB#&& - syntax: nvim-treesitter
|
|
|
|
PPPPPPPPPPPPGBPG&&& &&&&&&###BBBGGGGGGGBB##&& - pickers: telescope.nvim
|
2023-04-15 21:02:08 +02:00
|
|
|
&BGPPPPPPPPPPPPPPGGGGGGGGGGGGGGGGGGGBBB##&&& - files: neo-tree.nvim
|
2022-08-18 04:13:50 +02:00
|
|
|
&&##BBBBGGGGGGGPGBBBBBB####&&&& - git: vim-fugitive + gitsigns.nvim
|
2024-05-31 18:09:45 +02:00
|
|
|
&#B#& - extra: hexmode, vim-surround,
|
|
|
|
&& ###& undotree, nvim-colorizer,
|
|
|
|
&G# &&#&&& nvim-jdtls, rustaceanvim,
|
|
|
|
&&& vim-combo,
|
2022-08-18 04:13:50 +02:00
|
|
|
]]--
|
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
local function set_lsp_binds(_, bufnr)
|
|
|
|
require('keybinds'):set_lsp_keys({buffer=bufnr})
|
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
|
|
|
'alemidev/peak.nvim', -- color scheme
|
2022-08-18 04:13:50 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
'rickhowe/diffchar.vim', -- word-level diffs
|
|
|
|
'fidian/hexmode', -- convert buffers into hex view with xxd
|
|
|
|
'alemidev/vim-combo', -- track code combos
|
2022-10-02 00:57:30 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
'tpope/vim-fugitive', -- better git commands
|
|
|
|
'tpope/vim-surround', -- text object motions for surrounding
|
2022-08-18 04:13:50 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
'mbbill/undotree', -- tree undo history visualizer
|
2022-08-18 04:13:50 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
"stevearc/dressing.nvim", -- better vim.fn.input() and vim.fn.select()
|
2022-09-01 01:17:12 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
{
|
|
|
|
'norcalli/nvim-colorizer.lua', -- show hex color codes
|
2023-12-13 13:50:00 +01:00
|
|
|
config = function ()
|
|
|
|
require('colorizer').setup(nil, {
|
|
|
|
names = false,
|
|
|
|
RGB = false,
|
|
|
|
RRGGBBAA = true,
|
|
|
|
})
|
|
|
|
end
|
2023-04-15 21:02:08 +02:00
|
|
|
},
|
2022-08-18 04:13:50 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
{
|
|
|
|
"ellisonleao/glow.nvim", -- markdown previewer with glow
|
|
|
|
config = function() require("glow").setup() end
|
|
|
|
},
|
2022-08-18 04:13:50 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
{
|
|
|
|
'lewis6991/gitsigns.nvim', -- show diff signs in gutter
|
|
|
|
config = function()
|
|
|
|
require('gitsigns').setup { -- configure symbols and colors
|
|
|
|
signs = {
|
2024-07-03 02:34:19 +02:00
|
|
|
add = { text = '╎'},
|
|
|
|
change = { text = '│'},
|
|
|
|
delete = { text = '_'},
|
|
|
|
topdelete = { text = '‾'},
|
|
|
|
changedelete = { text = '~'},
|
|
|
|
untracked = { text = '╎'},
|
2023-04-15 21:02:08 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
},
|
2022-08-18 16:12:37 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
{
|
|
|
|
'nvim-treesitter/nvim-treesitter',
|
2023-12-13 12:56:30 +01:00
|
|
|
build = ':TSUpdate', -- if on windows and parsers break upon install, check under scoop/apps/neovim/{version}/lib/nvim/parser
|
2023-04-15 21:02:08 +02:00
|
|
|
config = function()
|
|
|
|
require('nvim-treesitter.configs').setup({
|
|
|
|
highlight = { enable = true },
|
|
|
|
})
|
|
|
|
vim.opt.foldmethod = "expr"
|
|
|
|
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
|
|
|
|
end
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"nvim-neo-tree/neo-tree.nvim",
|
2023-12-13 12:56:30 +01:00
|
|
|
branch = "v3.x",
|
2023-04-15 21:02:08 +02:00
|
|
|
dependencies = {
|
|
|
|
"nvim-lua/plenary.nvim",
|
|
|
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
|
|
|
"MunifTanjim/nui.nvim",
|
2024-03-27 15:03:27 +01:00
|
|
|
{ url = "https://git.alemi.dev/neo-tree-symbolmap.git" },
|
2023-04-15 21:02:08 +02:00
|
|
|
"mrbjarksen/neo-tree-diagnostics.nvim",
|
|
|
|
},
|
|
|
|
config = function ()
|
|
|
|
vim.g.neo_tree_remove_legacy_commands = 1
|
|
|
|
require('neo-tree').setup({
|
2024-05-31 19:28:57 +02:00
|
|
|
popup_border_style = "solid",
|
2023-04-15 21:02:08 +02:00
|
|
|
sources = {
|
|
|
|
"filesystem",
|
|
|
|
"buffers",
|
|
|
|
"git_status",
|
|
|
|
"symbolmap",
|
|
|
|
"diagnostics",
|
|
|
|
},
|
2023-04-15 22:15:54 +02:00
|
|
|
window = {
|
|
|
|
width = 30,
|
|
|
|
}
|
2023-04-15 21:02:08 +02:00
|
|
|
})
|
|
|
|
end
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
'nvim-telescope/telescope.nvim', -- fuzzy finder, GUI component
|
|
|
|
dependencies = {
|
|
|
|
{'nvim-lua/plenary.nvim'}, -- some utilities made for telescope
|
|
|
|
{'nvim-telescope/telescope-fzf-native.nvim', build = 'make' }, -- fzf algorithm implemented in C for faster searches
|
|
|
|
},
|
|
|
|
config = function()
|
|
|
|
local telescope = require('telescope')
|
|
|
|
telescope.load_extension('fzf')
|
|
|
|
telescope.setup({
|
|
|
|
defaults = {
|
|
|
|
path_display = { "truncate" },
|
|
|
|
layout_config = {
|
|
|
|
horizontal = {
|
|
|
|
preview_width = 0.65,
|
|
|
|
results_width = 0.35,
|
|
|
|
},
|
|
|
|
vertical = {
|
|
|
|
mirror = false,
|
|
|
|
},
|
|
|
|
cursor = {
|
|
|
|
preview_width = 0.6,
|
|
|
|
results_width = 0.4,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
require('keybinds'):set_telescope_keys({})
|
|
|
|
-- for some reason, telescope breaks folds!
|
|
|
|
-- this should fix (took it off an issue on github)
|
|
|
|
vim.api.nvim_create_autocmd('BufRead', {
|
|
|
|
callback = function()
|
|
|
|
vim.api.nvim_create_autocmd('BufWinEnter', {
|
|
|
|
once = true,
|
|
|
|
command = 'normal! zx'
|
|
|
|
})
|
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|
|
|
|
},
|
|
|
|
|
2023-12-13 12:56:30 +01:00
|
|
|
{
|
|
|
|
'mfussenegger/nvim-jdtls', -- extra LSP stuff for java
|
|
|
|
},
|
2023-04-15 21:02:08 +02:00
|
|
|
|
2024-05-31 18:09:45 +02:00
|
|
|
{
|
|
|
|
'mrcjkb/rustaceanvim',
|
|
|
|
init = function ()
|
|
|
|
vim.g.rustaceanvim = {
|
2023-04-15 21:02:08 +02:00
|
|
|
server = {
|
2024-05-31 18:09:45 +02:00
|
|
|
capabilites = require('cmp_nvim_lsp').default_capabilities(vim.lsp.protocol.make_client_capabilities()),
|
2023-04-15 21:02:08 +02:00
|
|
|
on_attach = set_lsp_binds,
|
|
|
|
},
|
2024-05-31 18:09:45 +02:00
|
|
|
}
|
|
|
|
end,
|
|
|
|
lazy = false,
|
2023-04-15 21:02:08 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
'neovim/nvim-lspconfig', -- import LSP configurations
|
|
|
|
dependencies = {
|
|
|
|
'hrsh7th/nvim-cmp', -- referenced here to guarantee load order
|
|
|
|
'folke/neodev.nvim', -- configure lua lsp with neovim runtime
|
|
|
|
},
|
|
|
|
config = function ()
|
2023-04-15 22:15:54 +02:00
|
|
|
require("neodev").setup({})
|
2023-12-13 12:56:30 +01:00
|
|
|
local core_capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
|
|
local cmp_capabilities = require('cmp_nvim_lsp').default_capabilities(core_capabilities)
|
|
|
|
local capabilities = vim.tbl_deep_extend('force', core_capabilities, cmp_capabilities)
|
2023-04-15 21:02:08 +02:00
|
|
|
local lspconfig = require("lspconfig")
|
|
|
|
lspconfig.bashls.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
|
|
|
lspconfig.pylsp.setup({capabilites = capabilities, on_attach = set_lsp_binds, settings = { pylsp = { plugins = { pycodestyle = { enabled = false } } } } })
|
|
|
|
lspconfig.clangd.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
2024-02-08 15:19:35 +01:00
|
|
|
lspconfig.ltex.setup({capabilities=capabilities, on_attach=set_lsp_binds, debounce_text_changes = 300, settings = { ltex = { language = "it-IT" }}})
|
2023-12-13 13:50:00 +01:00
|
|
|
lspconfig.lua_ls.setup({capabilites=capabilities, on_attach=set_lsp_binds, settings = {
|
|
|
|
Lua = { telemetry = { enable = false }, workspace = { checkThirdParty = false }}
|
|
|
|
}}) -- default-on telemetry is never ok ...
|
2023-12-13 12:56:30 +01:00
|
|
|
lspconfig.bufls.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
|
|
|
lspconfig.tsserver.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
2024-04-12 20:34:49 +02:00
|
|
|
lspconfig.html.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
2024-05-15 18:49:43 +02:00
|
|
|
lspconfig.ruby_lsp.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
2024-02-08 15:19:35 +01:00
|
|
|
lspconfig.elixirls.setup({capabilites=capabilities, on_attach=set_lsp_binds, cmd= {"/usr/bin/elixir-ls"}})
|
2024-05-15 18:49:35 +02:00
|
|
|
lspconfig.gopls.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
2024-07-03 02:34:48 +02:00
|
|
|
lspconfig.dartls.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
2023-12-13 12:56:30 +01:00
|
|
|
-- lspconfig.rust_analyzer.setup({capabilities=capabilities, on_attach=set_lsp_binds, settings = { ['rust-analyzer'] = { checkOnSave = { command = "clippy"}}}})
|
|
|
|
-- lspconfig.java_language_server.setup({capabilities=capabilities, on_attach=set_lsp_binds, cmd = { '/home/alemi/dev/software/java-language-server/dist/lang_server_linux.sh' }})
|
2023-04-15 22:37:03 +02:00
|
|
|
-- lspconfig.kotlin_language_server.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
2023-04-15 21:02:08 +02:00
|
|
|
end
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2022-08-18 16:12:37 +02:00
|
|
|
'mfussenegger/nvim-dap', -- debugger adapter protocol
|
2023-04-15 21:02:08 +02:00
|
|
|
dependencies = {
|
2024-03-27 19:46:33 +01:00
|
|
|
'rcarriga/nvim-dap-ui', -- batteries-included debugger ui
|
|
|
|
'nvim-neotest/nvim-nio', -- explicit dependency
|
2022-08-18 16:12:37 +02:00
|
|
|
},
|
|
|
|
config = function()
|
|
|
|
local dap = require('dap')
|
|
|
|
dap.adapters.python = {
|
|
|
|
type = 'executable',
|
|
|
|
command = (vim.fn.environ()["VIRTUAL_ENV"] or "") .. "/bin/python",
|
|
|
|
args = { '-m', 'debugpy.adapter' },
|
|
|
|
}
|
|
|
|
dap.configurations.python = {
|
|
|
|
{
|
|
|
|
name = "Launch file",
|
|
|
|
type = "python",
|
|
|
|
request = "launch",
|
|
|
|
program = vim.fn.expand('%'),
|
|
|
|
cwd = '${workspaceFolder}',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
dap.adapters.lldb = {
|
|
|
|
type = 'executable',
|
|
|
|
command = '/usr/bin/lldb-vscode', -- adjust as needed, must be absolute path
|
|
|
|
name = 'lldb'
|
|
|
|
}
|
|
|
|
dap.configurations.cpp = {
|
2023-01-23 22:01:35 +01:00
|
|
|
{
|
|
|
|
name = 'Launch',
|
|
|
|
type = 'lldb',
|
|
|
|
request = 'launch',
|
|
|
|
program = function()
|
|
|
|
vim.fn.input("run: ", vim.fn.getcwd() .. "/", "command")
|
|
|
|
end,
|
|
|
|
cwd = '${workspaceFolder}',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
dap.configurations.c = dap.configurations.cpp
|
|
|
|
dap.configurations.rust = {
|
2022-08-18 16:12:37 +02:00
|
|
|
{
|
|
|
|
name = 'Launch',
|
|
|
|
type = 'lldb',
|
|
|
|
request = 'launch',
|
|
|
|
program = function()
|
|
|
|
local program = ""
|
2023-01-23 22:01:35 +01:00
|
|
|
for i in string.gmatch(vim.fn.getcwd(), "([^/]+)") do -- TODO jank! assumes folder is called just like executable
|
2022-08-18 16:12:37 +02:00
|
|
|
program = i
|
|
|
|
end
|
|
|
|
return vim.fn.getcwd() .. "/target/debug/" .. program -- TODO can I put startup file somewhere?
|
|
|
|
end,
|
|
|
|
cwd = '${workspaceFolder}',
|
2023-01-23 22:01:35 +01:00
|
|
|
args = function()
|
|
|
|
local args = {}
|
|
|
|
for str in string.gmatch(vim.fn.input("args: "), "([^,]+)") do
|
|
|
|
table.insert(args, str)
|
|
|
|
end
|
|
|
|
return args
|
|
|
|
end,
|
2022-08-18 16:12:37 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
require('keybinds'):set_dap_keys({})
|
|
|
|
require('dapui').setup()
|
|
|
|
end,
|
2023-04-15 21:02:08 +02:00
|
|
|
},
|
2022-08-18 16:12:37 +02:00
|
|
|
|
2023-04-15 21:02:08 +02:00
|
|
|
{
|
2022-08-18 16:12:37 +02:00
|
|
|
'hrsh7th/nvim-cmp', -- completion engine core
|
2023-04-15 21:02:08 +02:00
|
|
|
dependencies = {
|
2022-08-18 16:12:37 +02:00
|
|
|
'hrsh7th/cmp-nvim-lsp', -- complete with LSP
|
|
|
|
'hrsh7th/cmp-nvim-lsp-signature-help', -- complete function signatures
|
|
|
|
'hrsh7th/cmp-nvim-lsp-document-symbol', -- complete document symbols
|
|
|
|
'hrsh7th/cmp-path', -- complete paths
|
|
|
|
'hrsh7th/cmp-buffer', -- complete based on buffer
|
|
|
|
'rcarriga/cmp-dap', -- complete in debugger
|
|
|
|
'saadparwaiz1/cmp_luasnip', -- complete with snippets
|
2022-08-19 05:25:23 +02:00
|
|
|
'onsails/lspkind.nvim', -- fancy icons and formatting
|
2023-04-15 21:02:08 +02:00
|
|
|
'L3MON4D3/LuaSnip', -- snippet engine
|
2022-08-18 16:12:37 +02:00
|
|
|
},
|
2023-04-15 21:02:08 +02:00
|
|
|
config = function ()
|
|
|
|
local cmp = require('cmp')
|
|
|
|
cmp.setup({
|
|
|
|
formatting = {
|
|
|
|
format = function(entry, vim_item)
|
|
|
|
local kind = require("lspkind").cmp_format({ mode = "symbol" })(entry, vim_item)
|
|
|
|
kind.kind = " " .. kind.kind .. " "
|
|
|
|
return kind
|
|
|
|
end,
|
2022-08-18 04:13:50 +02:00
|
|
|
},
|
2023-04-15 21:02:08 +02:00
|
|
|
snippet = {
|
|
|
|
expand = function(args) require('luasnip').lsp_expand(args.body) end,
|
|
|
|
},
|
|
|
|
mapping = cmp.mapping.preset.insert({
|
|
|
|
['<Tab>'] = cmp.mapping.confirm({ select = true }),
|
|
|
|
['<C-Space>'] = cmp.mapping.complete(),
|
|
|
|
}),
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'nvim_lsp_signature_help', max_item_count = 1 },
|
|
|
|
{ name = 'nvim_lsp' },
|
|
|
|
{ name = 'path', max_item_count = 3 },
|
|
|
|
{ name = 'luasnip' },
|
|
|
|
{ name = 'buffer', keyword_length = 3, max_item_count = 3 },
|
|
|
|
}),
|
2023-01-10 16:54:43 +01:00
|
|
|
})
|
2023-04-15 21:02:08 +02:00
|
|
|
cmp.setup.filetype({ "dap-repl", "dapui_watches" }, {
|
|
|
|
formatting = {
|
|
|
|
format = function(entry, vim_item)
|
|
|
|
local kind = require("lspkind").cmp_format({ mode = "symbol" })(entry, vim_item)
|
|
|
|
kind.kind = " " .. kind.kind .. " "
|
|
|
|
return kind
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
mapping = cmp.mapping.preset.insert({ ['<Tab>'] = cmp.mapping.confirm({ select = true }) }),
|
|
|
|
sources = {
|
|
|
|
{ name = 'dap' },
|
|
|
|
},
|
2022-08-18 04:13:50 +02:00
|
|
|
})
|
2023-04-15 21:02:08 +02:00
|
|
|
-- cmp.setup.cmdline('/', {
|
|
|
|
-- formatting = {
|
|
|
|
-- format = function(entry, vim_item)
|
|
|
|
-- local kind = require("lspkind").cmp_format({ mode = "symbol" })(entry, vim_item)
|
|
|
|
-- kind.kind = " " .. kind.kind .. " "
|
|
|
|
-- return kind
|
|
|
|
-- end,
|
|
|
|
-- },
|
|
|
|
-- mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
-- sources = cmp.config.sources({
|
|
|
|
-- { name = 'nvim_lsp_document_symbol' },
|
|
|
|
-- { name = 'buffer', keyword_length = 3 },
|
|
|
|
-- })
|
|
|
|
-- })
|
2022-08-18 04:13:50 +02:00
|
|
|
end
|
2023-04-15 21:02:08 +02:00
|
|
|
},
|
|
|
|
}
|