neovim 0.11
This commit is contained in:
parent
3ec79a04d6
commit
c551043634
17 changed files with 62 additions and 98 deletions
|
@ -27,6 +27,6 @@ require("lazy").setup({
|
|||
-- import your plugins
|
||||
{ import = "plugins" },
|
||||
},
|
||||
install = { colorscheme = { "pywal16" } },
|
||||
checker = { enabled = true },
|
||||
install = { colorscheme = { "tokyonight" } },
|
||||
checker = { enabled = false },
|
||||
})
|
||||
|
|
13
lua/config/lsp.lua
Normal file
13
lua/config/lsp.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
local capabilities = {
|
||||
textDocument = {
|
||||
foldingRange = {
|
||||
dynamicRegistration = false,
|
||||
lineFoldingOnly = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
capabilities = require("blink.cmp").get_lsp_capabilities(capabilities)
|
||||
|
||||
-- Load all LSP's in "lsp/"
|
||||
vim.lsp.enable({ "clangd", "tinymist", "lua-language-server", })
|
|
@ -13,6 +13,7 @@ map("n", "<C-b>", "<cmd>Neotree toggle<CR>", { desc = "Open neotree"})
|
|||
map("n", "<C-p>", "<cmd>Telescope find_files<CR>", { desc = "Telescope: Find files" })
|
||||
map("n", "<C-g>", "<cmd>Telescope live_grep<CR>", { desc = "Telescope: Live grep" })
|
||||
|
||||
-- LSP Stuff
|
||||
vim.api.nvim_create_autocmd("LspAttach", {
|
||||
group = vim.api.nvim_create_augroup("UserLspConfig", {}),
|
||||
callback = function(ev)
|
||||
|
|
|
@ -1,33 +0,0 @@
|
|||
local cmp = require'cmp'
|
||||
require("luasnip.loaders.from_vscode").lazy_load()
|
||||
|
||||
cmp.setup({
|
||||
snippet = {
|
||||
expand = function(args)
|
||||
require('luasnip').lsp_expand(args.body) -- For `luasnip` users.
|
||||
end,
|
||||
},
|
||||
|
||||
window = {
|
||||
completion = cmp.config.window.bordered(),
|
||||
documentation = cmp.config.window.bordered(),
|
||||
},
|
||||
|
||||
mapping = cmp.mapping.preset.insert({
|
||||
['<C-b>'] = cmp.mapping.scroll_docs(-4),
|
||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||
['<C-Space>'] = cmp.mapping.complete(),
|
||||
['<C-e>'] = cmp.mapping.abort(),
|
||||
['<CR>'] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
|
||||
}),
|
||||
|
||||
sources = cmp.config.sources({
|
||||
{ name = 'nvim_lsp' },
|
||||
{ name = 'luasnip' }, -- For luasnip users.
|
||||
{ name = 'nvim_lua' },
|
||||
-- { name = 'buffer' },
|
||||
{ name = 'path' },
|
||||
{ name = 'nvim_lsp_signature_help' },
|
||||
-- { name = 'cmdline' },
|
||||
})
|
||||
})
|
|
@ -16,6 +16,7 @@ o.tabstop = 2
|
|||
o.softtabstop = 2
|
||||
|
||||
o.number = true
|
||||
o.relativenumber = true
|
||||
o.syntax = "on"
|
||||
o.cursorline = true
|
||||
o.expandtab = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue