diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2023-12-09 21:38:14 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2023-12-09 21:38:14 +0300 |
commit | d2193c1bd22ba52fc4784eb271b40d71cb140738 (patch) | |
tree | 58e131a8e402508e54da12d90b9f54d8b4047dc2 /.config/nvim/lua/user/plugins.lua | |
parent | ff61e763b12badbf73f4e78b462c626ab206be1c (diff) |
Added autocopmletion
Now settings for every language are in directoty
~/.config/nvim/lua/user/lsp
Diffstat (limited to '.config/nvim/lua/user/plugins.lua')
-rw-r--r-- | .config/nvim/lua/user/plugins.lua | 44 |
1 files changed, 34 insertions, 10 deletions
diff --git a/.config/nvim/lua/user/plugins.lua b/.config/nvim/lua/user/plugins.lua index ee7dea7..2e52200 100644 --- a/.config/nvim/lua/user/plugins.lua +++ b/.config/nvim/lua/user/plugins.lua @@ -1,17 +1,41 @@ -- this file contains plugin settings as well as initialization of lazy.nvim - -- plugins to be installed plugins = { - "folke/lazy.nvim", -- plugin manager - "nvim-lua/popup.nvim", -- some functions for other plugins - "nvim-lua/plenary.nvim", -- some functions for other plugins - "folke/which-key.nvim", -- pretty self-descriptive name - "rafi/awesome-vim-colorschemes", -- same here - "tpope/vim-commentary", -- gc & gcc for commenting - "tpope/vim-surround", -- replace quotes e.t.c - "nvim-treesitter/nvim-treesitter", -- folding code, advanced syntax highlighting & sitting on a tree - "preservim/nerdtree", -- file explorer + { "folke/lazy.nvim" }, -- plugin manager + -- "williamboman/mason.nvim", -- plugin manager for LSP + -- "williamboman/mason-lspconfig.nvim", -- mason add-ons for lspconfig + + { "nvim-lua/popup.nvim" }, -- some functions for other plugins + { "nvim-lua/plenary.nvim" }, -- some functions for other plugins + { "folke/which-key.nvim" }, -- pretty self-descriptive name + + { "rafi/awesome-vim-colorschemes" }, -- colorschemes + { "lunarvim/colorschemes" }, -- colorschemes + { "folke/tokyonight.nvim" }, -- colorschemes + + { "tpope/vim-commentary" }, -- gc & gcc for commenting + { "tpope/vim-surround" }, -- replace quotes e.t.c + { "preservim/nerdtree" }, -- file explorer + + { "nvim-treesitter/nvim-treesitter" }, -- folding code, advanced syntax highlighting & sitting on a tree + { "neovim/nvim-lspconfig" }, -- LSP configuration + + -- { "hrsh7th/vim-vsnip" }, -- snippet engine + { "L3MON4D3/LuaSnip" }, -- better snippet engine + { "saadparwaiz1/cmp_luasnip" }, -- for luasnip + { "rafamadriz/friendly-snippets" }, -- predefined snippets + + -- Autocompletion framework + { "hrsh7th/nvim-cmp" }, -- the framework + { "hrsh7th/cmp-nvim-lua" }, -- lua config + { "hrsh7th/cmp-nvim-lsp-signature-help" }, -- ?????????? a monster + { "hrsh7th/cmp-nvim-lsp" }, -- LSP completion + { "hrsh7th/cmp-path" }, -- /mnt/D/media/audio_sync/term_download_mp3/HELLO_I_AM_EMU_OTORI.mp3 + { "hrsh7th/cmp-buffer" }, -- current buffer + { "hrsh7th/cmp-cmdline" }, -- command line tools + { "Saecki/crates.nvim" }, -- rust packages from crates.io + } -- options for lazy |