diff --git a/lua/plugins/completions.lua b/lua/plugins/completions.lua index 0b26800..8e068cf 100644 --- a/lua/plugins/completions.lua +++ b/lua/plugins/completions.lua @@ -1,41 +1,65 @@ -function Leave_snippet() - if - ((vim.v.event.old_mode == 's' and vim.v.event.new_mode == 'n') or vim.v.event.old_mode == 'i') - and require('luasnip').session.current_nodes[vim.api.nvim_get_current_buf()] - and not require('luasnip').session.jump_active - then - require('luasnip').unlink_current() - end -end - -vim.api.nvim_command [[ - autocmd ModeChanged * lua Leave_snippet() -]] - -vim.cmd 'highlight! link CmpPmenu Pmenu' -vim.cmd 'highlight! link CmpPmenuBorder Pmenu' -vim.cmd 'highlight! CmpPmenu guibg=#282828' -vim.cmd 'highlight! CmpPmenuBorder guifg=#615750' +-- function Leave_snippet() +-- if +-- ((vim.v.event.old_mode == 's' and vim.v.event.new_mode == 'n') or vim.v.event.old_mode == 'i') +-- and require('luasnip').session.current_nodes[vim.api.nvim_get_current_buf()] +-- and not require('luasnip').session.jump_active +-- then +-- require('luasnip').unlink_current() +-- end +-- end +-- +-- vim.api.nvim_command [[ +-- autocmd ModeChanged * lua Leave_snippet() +-- ]] +-- +-- vim.cmd 'highlight! link CmpPmenu Pmenu' +-- vim.cmd 'highlight! link CmpPmenuBorder Pmenu' +-- vim.cmd 'highlight! CmpPmenu guibg=#282828' +-- vim.cmd 'highlight! CmpPmenuBorder guifg=#615750' return { { 'hrsh7th/nvim-cmp', + event = 'InsertEnter', dependencies = { - 'hrsh7th/cmp-nvim-lsp', - 'L3MON4D3/LuaSnip', + -- Snippet Engine & its associated nvim-cmp source + { + 'L3MON4D3/LuaSnip', + build = (function() + -- Build Step is needed for regex support in snippets. + -- This step is not supported in many windows environments. + -- Remove the below condition to re-enable on windows. + if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then + return + end + return 'make install_jsregexp' + end)(), + dependencies = { + -- `friendly-snippets` contains a variety of premade snippets. + -- See the README about individual language/framework/plugin snippets: + -- https://github.com/rafamadriz/friendly-snippets + { + 'rafamadriz/friendly-snippets', + config = function() + require('luasnip.loaders.from_vscode').lazy_load() + end, + }, + }, + }, 'saadparwaiz1/cmp_luasnip', - 'rafamadriz/friendly-snippets', + + -- Adds other completion capabilities. + -- nvim-cmp does not ship with all sources by default. They are split + -- into multiple repos for maintenance purposes. + 'hrsh7th/cmp-nvim-lsp', + 'hrsh7th/cmp-path', }, config = function() - -- nvim-cmp setup local cmp = require 'cmp' local luasnip = require 'luasnip' - require('luasnip.loaders.from_vscode').lazy_load() - - local border = require('utils').nvim_open_win_border - luasnip.config.setup {} + local border = require('utils').nvim_open_win_border local highlight_opts = 'Normal:CmpPmenu,FloatBorder:CmpPmenuBorder,CursorLine:PmenuSel,Search:None' cmp.setup { @@ -44,40 +68,37 @@ return { luasnip.lsp_expand(args.body) end, }, - completion = { - completeopt = 'menu,menuone,noinsert', - }, + completion = { completeopt = 'menu,menuone,noinsert' }, + mapping = cmp.mapping.preset.insert { [''] = cmp.mapping.select_next_item(), [''] = cmp.mapping.select_prev_item(), - [''] = cmp.mapping.scroll_docs(-4), + [''] = cmp.mapping.scroll_docs(-4), [''] = cmp.mapping.scroll_docs(4), + [''] = cmp.mapping.confirm { select = true }, [''] = cmp.mapping.complete {}, - [''] = cmp.mapping.confirm { select = true }, - [''] = cmp.mapping.close(), - [''] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_next_item() - elseif luasnip.locally_jumpable() then - luasnip.jump(1) - else - fallback() + + [''] = cmp.mapping(function() + if luasnip.expand_or_locally_jumpable() then + luasnip.expand_or_jump() end end, { 'i', 's' }), - [''] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_prev_item() - elseif luasnip.locally_jumpable(-1) then + [''] = cmp.mapping(function() + if luasnip.locally_jumpable(-1) then luasnip.jump(-1) - else - fallback() end end, { 'i', 's' }), }, sources = { + { + name = 'lazydev', + -- set group index to 0 to skip loading LuaLS completions as lazydev recommends it + group_index = 0, + }, { name = 'nvim_lsp' }, { name = 'luasnip' }, - { name = 'crates' }, + { name = 'path' }, + -- { name = 'crates' }, }, window = { completion = { diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 14ed578..3568ded 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -1,109 +1,141 @@ -local on_attach = function(_, bufnr) - local nmap = function(keys, func, desc) - if desc then - desc = 'LSP: ' .. desc +vim.api.nvim_create_autocmd('LspAttach', { + group = vim.api.nvim_create_augroup('kickstart-lsp-attach', { clear = true }), + callback = function(event) + local map = function(keys, func, desc, mode) + mode = mode or 'n' + vim.keymap.set(mode, keys, func, { buffer = event.buf, desc = 'LSP: ' .. desc }) end - vim.keymap.set('n', keys, func, { buffer = bufnr, desc = desc }) - end - local delayed_format = function() - vim.lsp.buf.format { timeout_ms = 2000 } - end + map('D', require('telescope.builtin').lsp_type_definitions, 'Type [D]efinition') + map('ca', vim.lsp.buf.code_action, '[C]ode [A]ction', { 'n', 'x' }) + map('ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols') + map('rn', vim.lsp.buf.rename, '[R]e[n]ame') + map('ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') + map('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration') + map('gI', require('telescope.builtin').lsp_implementations, '[G]oto [I]mplementation') + map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition') + map('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') - nmap('rn', vim.lsp.buf.rename, '[R]e[n]ame') - nmap('ca', vim.lsp.buf.code_action, '[C]ode [A]ction') - nmap('ff', delayed_format, '[F]ormat') + local delayed_format = function() + vim.lsp.buf.format { timeout_ms = 2000 } + end - nmap('gd', vim.lsp.buf.definition, '[G]oto [D]efinition') - nmap('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') - nmap('gI', vim.lsp.buf.implementation, '[G]oto [I]mplementation') - nmap('D', vim.lsp.buf.type_definition, 'Type [D]efinition') - nmap('ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols') - nmap('ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') + map('ff', delayed_format, '[F]ormat') + -- + -- -- See `:help K` for why this keymap + -- nmap('K', vim.lsp.buf.hover, 'Hover Documentation') + -- nmap('', vim.lsp.buf.signature_help, 'Signature Documentation') - -- See `:help K` for why this keymap - nmap('K', vim.lsp.buf.hover, 'Hover Documentation') - nmap('', vim.lsp.buf.signature_help, 'Signature Documentation') + local client = vim.lsp.get_client_by_id(event.data.client_id) + if client and client.supports_method(vim.lsp.protocol.Methods.textDocument_documentHighlight) then + local highlight_augroup = vim.api.nvim_create_augroup('kickstart-lsp-highlight', { clear = false }) + vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, { + buffer = event.buf, + group = highlight_augroup, + callback = vim.lsp.buf.document_highlight, + }) - -- Lesser used LSP functionality - nmap('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration') - nmap('wa', vim.lsp.buf.add_workspace_folder, '[W]orkspace [A]dd Folder') - nmap('wr', vim.lsp.buf.remove_workspace_folder, '[W]orkspace [R]emove Folder') - nmap('wl', function() - print(vim.inspect(vim.lsp.buf.list_workspace_folders())) - end, '[W]orkspace [L]ist Folders') + vim.api.nvim_create_autocmd({ 'CursorMoved', 'CursorMovedI' }, { + buffer = event.buf, + group = highlight_augroup, + callback = vim.lsp.buf.clear_references, + }) - -- Create a command `:Format` local to the LSP buffer - vim.api.nvim_buf_create_user_command(bufnr, 'Format', function(_) - vim.lsp.buf.format() - end, { desc = 'Format current buffer with LSP' }) + vim.api.nvim_create_autocmd('LspDetach', { + group = vim.api.nvim_create_augroup('kickstart-lsp-detach', { clear = true }), + callback = function(event2) + vim.lsp.buf.clear_references() + vim.api.nvim_clear_autocmds { group = 'kickstart-lsp-highlight', buffer = event2.buf } + end, + }) + end - vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, { command = 'lua pcall(vim.lsp.buf.document_highlight)', buffer = bufnr }) - vim.api.nvim_create_autocmd({ 'CursorMoved' }, { command = 'lua pcall(vim.lsp.buf.clear_references)', buffer = bufnr }) -end + if client and client.supports_method(vim.lsp.protocol.Methods.textDocument_inlayHint) then + map('th', function() + vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled { bufnr = event.buf }) + end, '[T]oggle Inlay [H]ints') + end + end, +}) return { { -- LSP Configuration & Plugins 'neovim/nvim-lspconfig', dependencies = { - -- Automatically install LSPs to stdpath for neovim - 'williamboman/mason.nvim', - 'williamboman/mason-lspconfig.nvim', - -- adds extra functionality over rust_analyzer + -- Automatically install LSPs and related tools to stdpath for Neovim + { 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants + 'williamboman/mason-lspconfig.nvim', + 'WhoIsSethDaniel/mason-tool-installer.nvim', + + -- Useful status updates for LSP. + { 'j-hui/fidget.nvim', opts = {} }, + + -- Allows extra capabilities provided by nvim-cmp + 'hrsh7th/cmp-nvim-lsp', + { 'mrcjkb/rustaceanvim', version = '^4', ft = { 'rust' }, }, - -- Useful status updates for LSP - { 'j-hui/fidget.nvim', opts = {} }, - - -- Additional lua configuration, makes nvim stuff amazing! - 'folke/neodev.nvim', + { + -- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins + -- used for completion, annotations and signatures of Neovim apis + 'folke/lazydev.nvim', + ft = 'lua', + opts = { + library = { + -- Load luvit types when the `vim.uv` word is found + { path = 'luvit-meta/library', words = { 'vim%.uv' } }, + }, + }, + }, + { 'Bilal2453/luvit-meta', lazy = true }, }, config = function() local servers = { clangd = {}, - gopls = {}, marksman = {}, - pyright = {}, - tsserver = {}, + gopls = {}, + ruff = {}, + pyright = { + pyright = { + disableOrganizeImports = true, + }, + }, + ts_ls = {}, lua_ls = { Lua = { workspace = { checkThirdParty = false }, telemetry = { enable = false }, }, }, + stylua = {}, } - -- Setup neovim lua configuration - require('neodev').setup() - - -- nvim-cmp supports additional completion capabilities, so broadcast that to servers local capabilities = vim.lsp.protocol.make_client_capabilities() - capabilities = require('cmp_nvim_lsp').default_capabilities(capabilities) + capabilities = vim.tbl_deep_extend('force', capabilities, require('cmp_nvim_lsp').default_capabilities()) -- Setup mason so it can manage external tooling require('mason').setup() -- Ensure the servers above are installed - local mason_lspconfig = require 'mason-lspconfig' + require('mason-tool-installer').setup { ensure_installed = vim.tbl_keys(servers) } - mason_lspconfig.setup { - ensure_installed = vim.tbl_keys(servers), - } - - mason_lspconfig.setup_handlers { - function(server_name) - require('lspconfig')[server_name].setup { - capabilities = capabilities, - on_attach = on_attach, - settings = servers[server_name], - } - end, + require('mason-lspconfig').setup { + handlers = { + function(server_name) + local server = servers[server_name] or {} + -- This handles overriding only values explicitly passed + -- by the server configuration above. Useful when disabling + -- certain features of an LSP (for example, turning off formatting for ts_ls) + server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}) + require('lspconfig')[server_name].setup(server) + end, + }, } vim.g.rustaceanvim = { @@ -113,7 +145,6 @@ return { }, }, server = { - on_attach = on_attach, settings = { ['rust-analyzer'] = { cargo = { @@ -124,8 +155,13 @@ return { checkOnSave = { command = 'clippy', }, - -- leave rainbow higlightifg to plugin + -- leave rainbow higlight to plugin rainbowHighlightOn = false, + useLibraryCodeForTypes = true, + autoSearchPaths = true, + autoImportCompletions = false, + reportMissingImports = true, + followImportForHints = true, }, }, }, diff --git a/lua/plugins/neogen.lua b/lua/plugins/neogen.lua new file mode 100644 index 0000000..283142e --- /dev/null +++ b/lua/plugins/neogen.lua @@ -0,0 +1,6 @@ +return { + 'danymat/neogen', + config = true, + -- Uncomment next line if you want to follow only stable versions + -- version = "*" +} diff --git a/lua/plugins/none_ls.lua b/lua/plugins/none_ls.lua index cba0ed1..eafb6ec 100644 --- a/lua/plugins/none_ls.lua +++ b/lua/plugins/none_ls.lua @@ -1,23 +1,22 @@ return { -- inject lsp formatting, diagonstics etc 'nvimtools/none-ls.nvim', - dependencies = { 'nvim-lua/plenary.nvim' }, + dependencies = { + 'nvim-lua/plenary.nvim', + }, config = function() - local null_ls = require 'null-ls' + local none_ls = require 'null-ls' - null_ls.setup { + none_ls.setup { sources = { -- general - null_ls.builtins.code_actions.gitsigns, + none_ls.builtins.code_actions.gitsigns, -- python - -- null_ls.builtins.diagnostics.pylint, - null_ls.builtins.formatting.black, - -- null_ls.builtins.formatting.isort, - null_ls.builtins.diagnostics.ruff, + -- none_ls.builtins.formatting.black, -- typescript - null_ls.builtins.formatting.prettier, + none_ls.builtins.formatting.prettier, -- lua - null_ls.builtins.formatting.stylua, + none_ls.builtins.formatting.stylua, }, } end, diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 65fd9a4..01d706c 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -10,7 +10,19 @@ return { vim.defer_fn(function() require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim', 'markdown' }, + ensure_installed = { + 'c', + 'cpp', + 'go', + 'lua', + 'python', + 'rust', + 'tsx', + 'typescript', + 'vimdoc', + 'vim', + 'markdown', + }, -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) auto_install = true,