Whoops....
This commit is contained in:
parent
4143a7971a
commit
32b33a73c5
1 changed files with 25 additions and 0 deletions
|
@ -31,10 +31,19 @@ require("packer").startup(function(use)
|
||||||
use "gpanders/editorconfig.nvim"
|
use "gpanders/editorconfig.nvim"
|
||||||
use "johnfrankmorgan/whitespace.nvim"
|
use "johnfrankmorgan/whitespace.nvim"
|
||||||
use "kylechui/nvim-surround"
|
use "kylechui/nvim-surround"
|
||||||
|
use "L3MON4D3/LuaSnip"
|
||||||
use "lewis6991/gitsigns.nvim"
|
use "lewis6991/gitsigns.nvim"
|
||||||
use "nyngwang/NeoZoom.lua" -- TODO: Floating window background color
|
use "nyngwang/NeoZoom.lua" -- TODO: Floating window background color
|
||||||
use "ruifm/gitlinker.nvim"
|
use "ruifm/gitlinker.nvim"
|
||||||
|
|
||||||
|
use "neovim/nvim-lspconfig"
|
||||||
|
use "hrsh7th/nvim-cmp"
|
||||||
|
use "hrsh7th/cmp-nvim-lsp"
|
||||||
|
use "hrsh7th/cmp-buffer"
|
||||||
|
use "hrsh7th/cmp-path"
|
||||||
|
use "hrsh7th/cmp-nvim-lua"
|
||||||
|
use 'saadparwaiz1/cmp_luasnip'
|
||||||
|
|
||||||
use "gruvbox-community/gruvbox"
|
use "gruvbox-community/gruvbox"
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
@ -197,6 +206,22 @@ require("neo-zoom").setup({
|
||||||
})
|
})
|
||||||
vim.keymap.set("n", "<C-w>z", require("neo-zoom").neo_zoom)
|
vim.keymap.set("n", "<C-w>z", require("neo-zoom").neo_zoom)
|
||||||
|
|
||||||
|
--- nvim-cmp
|
||||||
|
require("cmp").setup({ -- TODO: More incoming
|
||||||
|
snippet = {
|
||||||
|
expand = function(args)
|
||||||
|
require("luasnip").lsp_expand(args.body)
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
--- nvim-lspconfig
|
||||||
|
require("lspconfig").rust_analyzer.setup({
|
||||||
|
capabilities = require("cmp_nvim_lsp").update_capabilities(
|
||||||
|
vim.lsp.protocol.make_client_capabilities()
|
||||||
|
),
|
||||||
|
})
|
||||||
|
|
||||||
--- nvim-surround
|
--- nvim-surround
|
||||||
require("nvim-surround").setup()
|
require("nvim-surround").setup()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue