From 1776426f90d2decdc131df4af2148598aa9ae72d Mon Sep 17 00:00:00 2001 From: newbie Date: Fri, 24 Nov 2023 12:59:48 +0800 Subject: [PATCH] update --- init.lua | 1 - lua/lsp/c.lua | 2 + lua/lsp/lua.lua | 5 ++ lua/plugs/edit-plugs.lua | 28 ++++--- lua/plugs/nvim-lspconfig.lua | 154 ++++++++++++++--------------------- lua/plugs/nvimtree.lua | 3 + 6 files changed, 88 insertions(+), 105 deletions(-) create mode 100644 lua/lsp/c.lua diff --git a/init.lua b/init.lua index dda8d06..f500805 100644 --- a/init.lua +++ b/init.lua @@ -23,7 +23,6 @@ if not G.loop.fs_stat(lazypath) then end - G.opt.rtp:prepend(lazypath) require("keymap") diff --git a/lua/lsp/c.lua b/lua/lsp/c.lua new file mode 100644 index 0000000..97aeadd --- /dev/null +++ b/lua/lsp/c.lua @@ -0,0 +1,2 @@ +return { +} diff --git a/lua/lsp/lua.lua b/lua/lsp/lua.lua index 3537238..f23bba2 100644 --- a/lua/lsp/lua.lua +++ b/lua/lsp/lua.lua @@ -1,8 +1,13 @@ local runtime_path = vim.split(package.path, ';') + table.insert(runtime_path, "lua/?.lua") table.insert(runtime_path, "lua/?/init.lua") + return { + capabilities = require('cmp_nvim_lsp').default_capabilities(), + settings = { + Lua = { runtime = { -- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim) diff --git a/lua/plugs/edit-plugs.lua b/lua/plugs/edit-plugs.lua index 67a36ee..aa4e0c5 100644 --- a/lua/plugs/edit-plugs.lua +++ b/lua/plugs/edit-plugs.lua @@ -4,24 +4,30 @@ return { 'tpope/vim-surround', 'gcmt/wildfire.vim', - -- 多光标 + -- 括号箭头 + 'yaocccc/nvim-hlchunk', + + }, + -- 多光标 + { 'terryma/vim-multiple-cursors', + keys={"", "", ""}, }, { - --格式整理 + --格式整理 { - 'junegunn/vim-easy-align', - config = function () - G.map({ - {"v", "ga", ":EasyAlign", {noremap = true}}, - }) - end + 'junegunn/vim-easy-align', + config = function () + G.map({ + {"v", "ga", ":EasyAlign", {noremap = true}}, + }) + end }, }, { - -- 括号箭头 - 'yaocccc/nvim-hlchunk', - -- 注释插件 + -- 注释插件 + { 'tpope/vim-commentary', + } }, } diff --git a/lua/plugs/nvim-lspconfig.lua b/lua/plugs/nvim-lspconfig.lua index 79781a7..e298939 100644 --- a/lua/plugs/nvim-lspconfig.lua +++ b/lua/plugs/nvim-lspconfig.lua @@ -1,3 +1,40 @@ +local kind_icons = { + Text = "", + Method = "󰆧", + Function = "󰊕", + Constructor = "", + Field = "󰇽", + Variable = "󰂡", + Class = "󰠱", + Interface = "", + Module = "", + Property = "󰜢", + Unit = "", + Value = "󰎠", + Enum = "", + Keyword = "󰌋", + Snippet = "", + Color = "󰏘", + File = "󰈙", + Reference = "", + Folder = "󰉋", + EnumMember = "", + Constant = "󰏿", + Struct = "", + Event = "", + Operator = "󰆕", + TypeParameter = "󰅲", +} + + +local has_words_before = function() + unpack = unpack or table.unpack + local line, col = unpack(G.api.nvim_win_get_cursor(0)) + return col ~= 0 and G.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match('%s') == nil +end +local feedkey = function(key, mode) + vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(key, true, true, true), mode, true) +end return { { @@ -5,6 +42,8 @@ return { "neovim/nvim-lspconfig", config = function () require'lspconfig'.lua_ls.setup(require('lsp.lua')) + require'lspconfig'.clangd.setup(require('lsp.c')) + require'lspconfig'.bash_ls.setup() end }, { @@ -22,53 +61,10 @@ return { 'hrsh7th/cmp-cmdline', -- { name = 'cmdline' } 'hrsh7th/vim-vsnip', 'hrsh7th/cmp-vsnip', - { - 'onsails/lspkind-nvim', - config = function() - require('lspkind').init({ - mode = 'symbol_text', - preset = 'codicons', - symbol_map = { - Text = "󰉿", - Method = "󰆧", - Function = "󰊕", - Constructor = "", - Field = "󰜢", - Variable = "󰀫", - Class = "󰠱", - Interface = "", - Module = "", - Property = "󰜢", - Unit = "󰑭", - Value = "󰎠", - Enum = "", - Keyword = "󰌋", - Snippet = "", - Color = "󰏘", - File = "󰈙", - Reference = "󰈇", - Folder = "󰉋", - EnumMember = "", - Constant = "󰏿", - Struct = "󰙅", - Event = "", - Operator = "󰆕", - TypeParameter = "", - }, - }) - end - }, + 'onsails/lspkind-nvim', { "hrsh7th/nvim-cmp", config = function() - local has_words_before = function() - unpack = unpack or table.unpack - local line, col = unpack(G.api.nvim_win_get_cursor(0)) - return col ~= 0 and G.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match('%s') == nil - end - local feedkey = function(key, mode) - vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(key, true, true, true), mode, true) - end local cmp = require('cmp') local lspkind = require('lspkind') cmp.setup { @@ -81,12 +77,12 @@ return { { name = 'vnsip'}, { name = 'nvim_lsp' }, { name = 'buffer' }, - { name = 'path' }, - { name = 'cmdline' }, + -- { name = 'path' }, + -- { name = 'cmdline' }, }), mapping = cmp.mapping.preset.insert({ - [''] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items. - [""] = cmp.mapping(function(fallback) + [''] = cmp.mapping.confirm({ select = true }), + [""] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() elseif vim.fn["vsnip#available"](1) == 1 then @@ -98,67 +94,51 @@ return { end end, { "i", "s" }), - [""] = cmp.mapping(function() + [""] = cmp.mapping(function() if cmp.visible() then cmp.select_prev_item() elseif vim.fn["vsnip#jumpable"](-1) == 1 then feedkey("(vsnip-jump-prev)", "") end end, { "i", "s" }), - }), window = { - completion = { - winhighlight = "Normal:Pmenu,FloatBorder:Pmenu,Search:None", - col_offset = -3, - side_padding = 0, - }, }, fomatting = { format = lspkind.cmp_format({ - mode = 'symbol', + with_text = true, maxwidth = 50, - ellipsis_char = '...', - before = function (_, vim_item) + mode = 'symbol', + before = function (entry, vim_item) + vim_item.kind = kind_icons[vim_item.kind] + vim_item.menu = ({ + buffer = "[Buffer]", + nvim_lsp = "[LSP]", + })[entry.source.name] return vim_item - end + end, }) }, } + cmp.setup.cmdline('/', { + view = { + entries = {name = 'wildmenu', separator = '|' } + }, + }) end, }, { - -- 语法高亮 + -- 语法高亮 -- + 'nvim-treesitter/nvim-treesitter', config = function() require'nvim-treesitter.configs'.setup{ - -- A list of parser names, or "all" (the four listed parsers should always be installed) ensure_installed = {}, - indent = { enable = true }, - -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, - - -- Automatically install missing parsers when entering buffer - -- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally auto_install = true, - - -- List of parsers to ignore installing (for "all") - -- ignore_install = { "javascript" }, - - ---- If you need to change the installation directory of the parsers (see -> Advanced Setup) - -- parser_install_dir = "/some/path/to/store/parsers", -- Remember to run vim.opt.runtimepath:append("/some/path/to/store/parsers")! - highlight = { - -- `false` will disable the whole extension enable = true, - - -- NOTE: these are the names of the parsers and not the filetype. (for example if you want to - -- disable highlighting for the `tex` filetype, you need to include `latex` in this list as this is - -- the name of the parser) - -- list of language that will be disabled - -- disable = { "c", "rust" }, - -- Or use a function for more flexibility, e.g. to disable slow treesitter highlight for large files disable = function(lang, buf) local max_filesize = 100 * 1024 -- 100 KB local ok, stats = pcall(G.loop.fs_stat, G.api.nvim_buf_get_name(buf)) @@ -166,11 +146,6 @@ return { return true end end, - - -- Setting this to true will run `:h syntax` and tree-sitter at the same time. - -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). - -- Using this option may slow down your editor, and you may see some duplicate highlights. - -- Instead of true it can also be a list of languages additional_vim_regex_highlighting = false, }, parsers = { @@ -187,10 +162,3 @@ return { }, } } - - - - - - - diff --git a/lua/plugs/nvimtree.lua b/lua/plugs/nvimtree.lua index 1868080..ec56250 100644 --- a/lua/plugs/nvimtree.lua +++ b/lua/plugs/nvimtree.lua @@ -2,6 +2,9 @@ return { 'kyazdani42/nvim-web-devicons', { "nvim-tree/nvim-tree.lua", + keys = { + "" + }, config = function () require'nvim-tree'.setup {