summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2024-03-01 22:18:47 +0500
committertalha <talha@talhaamir.xyz>2024-03-01 22:18:47 +0500
commit00216181d2dea4ca8e44898aba459596b70220aa (patch)
tree1b27b8484984f3d1e227748505dbaafed3ec1c48
parent62a5f27b6d43a769c6699cbbadc2e78ab2f004db (diff)
Removed annoying and unused plugins:windows
- Vim-Gutentags is gone. Rarely worked. - Lsp-Zero is gone. Was not used.
-rw-r--r--after/plugin/lsp.lua25
-rw-r--r--after/plugin/vim-gutentags.lua78
-rw-r--r--lua/talha/functions.lua6
-rw-r--r--lua/talha/packer.lua21
4 files changed, 0 insertions, 130 deletions
diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua
deleted file mode 100644
index f8dae3c..0000000
--- a/after/plugin/lsp.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-local lsp = require('lsp-zero').preset({})
-
-local function allow_format(servers)
- return function(client) return vim.tbl_contains(servers, client.name) end
-end
-
-
--- TODO: add bindings to work when no lsp available, to allow normal functionality
-lsp.on_attach(function(client, bufnr)
- -- see :help lsp-zero-keybindings
- -- to learn the available actions
- local opts = {buffer = bufnr, remap = false}
- vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts)
- vim.keymap.set("n", "K", function() vim.lsp.buf.hover() end, opts)
- vim.keymap.set("n", "<leader>vws", function() vim.lsp.buf.workspace_symbol() end, opts)
- vim.keymap.set("n", "<leader>vd", function() vim.diagnostic.open_float() end, opts)
- vim.keymap.set("n", "[d", function() vim.diagnostic.goto_prev() end, opts)
- vim.keymap.set("n", "]d", function() vim.diagnostic.goto_next() end, opts)
- vim.keymap.set("n", "<leader>vca", function() vim.lsp.buf.code_action() end, opts)
- vim.keymap.set("n", "<leader>vrr", function() vim.lsp.buf.references() end, opts)
- vim.keymap.set("n", "<leader>vrn", function() vim.lsp.buf.rename() end, opts)
- vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts)
-end)
-
-lsp.setup()
diff --git a/after/plugin/vim-gutentags.lua b/after/plugin/vim-gutentags.lua
deleted file mode 100644
index 3a4b4cc..0000000
--- a/after/plugin/vim-gutentags.lua
+++ /dev/null
@@ -1,78 +0,0 @@
-vim.g.gutentags_ctags_exclude = {
- '*.git',
- '*.svg',
- '*.hg',
- '*/tests/*',
- 'build',
- 'dist',
- '*sites/*/files/*',
- 'bin',
- 'node_modules',
- 'bower_components',
- 'cache',
- 'compiled',
- 'docs',
- 'example',
- 'bundle',
- 'vendor',
- '*.md',
- '*-lock.json',
- '*.lock',
- '*bundle*.js',
- '*build*.js',
- '.*rc*',
- '*.json',
- '*.min.*',
- '*.map',
- '*.bak',
- '*.zip',
- '*.pyc',
- '*.class',
- '*.sln',
- '*.Master',
- '*.csproj',
- '*.tmp',
- '*.csproj.user',
- '*.cache',
- '*.pdb',
- 'tags*',
- 'cscope.*',
- '*.css',
- '*.less',
- '*.scss',
- '*.exe',
- '*.dll',
- '*.mp3',
- '*.ogg',
- '*.flac',
- '*.swp',
- '*.swo',
- '*.bmp',
- '*.gif',
- '*.ico',
- '*.jpg',
- '*.png',
- '*.rar',
- '*.zip',
- '*.tar',
- '*.tar.gz',
- '*.tar.xz',
- '*.tar.bz2',
- '*.pdf',
- '*.doc',
- '*.docx',
- '*.ppt',
- '*.pptx',
-}
-
-vim.opt.tags = './tags'
-vim.g.gutentags_add_default_project_roots = false
-vim.g.gutentags_project_root = { '.git' }
-
-vim.g.gutentags_generate_on_write = true
-vim.g.gutentags_generate_on_new = true
-vim.g.gutentags_generate_on_missing = true
-vim.g.gutentags_generate_on_write = true
-vim.g.gutentags_generate_on_empty_buffer = false
-vim.g.gutentags_ctags_extra_args = { '--tag-relative=yes', '--fields=+ailmnS' }
-vim.g.gutentags_ctags_exclude_wildignore = true
diff --git a/lua/talha/functions.lua b/lua/talha/functions.lua
index 9724541..b36bc60 100644
--- a/lua/talha/functions.lua
+++ b/lua/talha/functions.lua
@@ -67,12 +67,6 @@ function ToggleSpellCheck()
vim.opt.spelllang = 'en_us'
end
-function SetFocusColors(mode)
- vim.o.background = "light"
- vim.opt.cursorline = false
- vim.cmd("colorscheme vscode")
-end
-
function GetHomeDir()
-- for linux/mac
local home = os.getenv("HOME")
diff --git a/lua/talha/packer.lua b/lua/talha/packer.lua
index c1980c5..411958e 100644
--- a/lua/talha/packer.lua
+++ b/lua/talha/packer.lua
@@ -15,7 +15,6 @@ return require('packer').startup(function(use)
-- colorschemes
use {'Mofiqul/vscode.nvim'}
- use {'aditya-azad/candle-grey'}
use { "theprimeagen/harpoon" }
@@ -23,24 +22,4 @@ return require('packer').startup(function(use)
use('tpope/vim-fugitive')
- use({
- 'ludovicchabant/vim-gutentags',
- ft={'h', 'hpp', 'c', 'cpp'}
- })
-
- use {
- 'VonHeikemen/lsp-zero.nvim',
- branch = 'v2.x',
- requires = {
- -- LSP Support
- {'neovim/nvim-lspconfig'}, -- Required
- {'williamboman/mason.nvim'}, -- Optional
- {'williamboman/mason-lspconfig.nvim'}, -- Optional
-
- -- Autocompletion
- {'hrsh7th/nvim-cmp'}, -- Required
- {'hrsh7th/cmp-nvim-lsp'}, -- Required
- {'L3MON4D3/LuaSnip'}, -- Required
- }
- }
end)