all repos

init.lua @ 866517d

my nvim config
1 files changed, 17 insertions(+), 5 deletions(-)
Updated plugin list
Author: flof-ik ss2316544@gmail.com
Committed at: 2022-02-24 14:35:13 +0200
Parent: 86e6404
M lua/plugin.lua

@@ -7,10 +7,9 @@ use "wbthomason/packer.nvim"

use "nvim-lua/plenary.nvim" use "kyazdani42/nvim-web-devicons" use "rmehri01/onenord.nvim" -- theme - use "antoinemadec/FixCursorHold.nvim" use "gpanders/editorconfig.nvim" + use "lewis6991/impatient.nvim" - use "lewis6991/impatient.nvim" use { "tpope/vim-surround", keys = { "c", "d", "y" } } use { "numToStr/Comment.nvim", keys = { "gc" }, config = get_setup "Comment" } use { "windwp/nvim-autopairs", config = get_config "plugin.autopairs" }

@@ -32,8 +31,17 @@ use { "folke/todo-comments.nvim", config = get_setup "todo-comments" }

use { "goolord/alpha-nvim", config = get_config "plugin.alpha" } -- another menus :D - use { "kyazdani42/nvim-tree.lua", cmd = "NvimTreeToggle", config = get_config "plugin.nvimtree" } - use { "folke/trouble.nvim", cmd = { "Trouble", "TroubleToggle" }, config = get_setup "trouble" } + use { + "kyazdani42/nvim-tree.lua", + cmd = "NvimTreeToggle", + config = get_config "plugin.nvimtree", + } + + use { + "folke/trouble.nvim", + cmd = { "Trouble", "TroubleToggle" }, + config = get_setup "trouble", + } use { "akinsho/toggleterm.nvim",

@@ -49,6 +57,7 @@ module = "telescope",

config = get_config "plugin.telescope", } + -- Lsp use { "neovim/nvim-lspconfig", config = get_setup "lsp",

@@ -58,6 +67,7 @@ "jose-elias-alvarez/null-ls.nvim",

}, } + -- Completion use { "hrsh7th/nvim-cmp", config = get_config "plugin.cmp",

@@ -69,11 +79,13 @@ { "hrsh7th/cmp-nvim-lsp", module = "cmp_nvim_lsp" },

{ "hrsh7th/cmp-buffer", after = "nvim-cmp" }, { "hrsh7th/cmp-path", after = "nvim-cmp" }, { "saadparwaiz1/cmp_luasnip", after = "nvim-cmp" }, - { "L3MON4D3/LuaSnip", module = "luasnip", after = "nvim-cmp" }, + + "L3MON4D3/LuaSnip", "rafamadriz/friendly-snippets", }, } + -- Syntax use { "nvim-treesitter/nvim-treesitter", branch = "0.5-compat",