From 53b7498d649afe6161aeab2d0659d6d3c428300f Mon Sep 17 00:00:00 2001 From: siduck76 Date: Sat, 4 Sep 2021 16:59:19 +0530 Subject: [PATCH] remove un-needed config --- README.md | 9 +-------- lua/chadrc.lua | 2 +- lua/plugins/configs/others.lua | 7 ------- 3 files changed, 2 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index b317ba8..689342d 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,7 @@ ![gruvchad](https://user-images.githubusercontent.com/59060246/130129897-a68b1585-f42d-4325-8482-102dd2fe1e9e.png) ![everforest](https://user-images.githubusercontent.com/59060246/130129901-5e582f3e-b776-4d0c-9790-be5ae738b5a8.png) -# Very Very Useful Lua plugins used in my config - -#### Lspkind-nvim - -This tiny plugin adds vscode-like pictograms to neovim built-in lsp completion items: - -
+# Very Very Useful Lua plugins used in our config #### Nvim-tree.lua @@ -119,7 +113,6 @@ without / with Treesitter: - nvim-lspconfig for nvim-lsp configuration - lspInstall for installing lsp servers easily - nvim-compe for autocompletion -- lspkind to show pictograms on autocompletion items - telescope for file finding, picking, previewing (files and even images) - nvim-treesitter for syntax highlighting - nvim-autopairs for autolosing braces and stuffs diff --git a/lua/chadrc.lua b/lua/chadrc.lua index 986a835..6572d06 100644 --- a/lua/chadrc.lua +++ b/lua/chadrc.lua @@ -8,7 +8,7 @@ M.ui = { italic_comments = false, -- theme to be used, to see all available themes, open the theme switcher by + th - theme = "onedark", + theme = "gruvchad", -- theme toggler, toggle between two themes, see theme_toggleer mappings theme_toggler = { diff --git a/lua/plugins/configs/others.lua b/lua/plugins/configs/others.lua index 5cf70ed..b2594bb 100644 --- a/lua/plugins/configs/others.lua +++ b/lua/plugins/configs/others.lua @@ -101,13 +101,6 @@ M.luasnip = function() require("luasnip/loaders/from_vscode").load() end -M.lspkind = function() - local present, lspkind = pcall(require, "lspkind") - if present then - lspkind.init() - end -end - M.neoscroll = function() pcall(function() require("neoscroll").setup()