Cleaned a few plugins for faster performance
This commit is contained in:
@ -73,7 +73,7 @@ cmp.setup {
|
||||
{ name = 'luasnip' },
|
||||
{ name = 'path' },
|
||||
{ name = 'buffer' },
|
||||
{ name = 'zsh' },
|
||||
{ name = 'bash' },
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@ vim.cmd([[
|
||||
-- Add additional capabilities supported by nvim-cmp
|
||||
-- See: https://github.com/neovim/nvim-lspconfig/wiki/Autocompletion
|
||||
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
||||
capabilities = cmp_nvim_lsp.update_capabilities(capabilities)
|
||||
capabilities = cmp_nvim_lsp.default_capabilities(capabilities)
|
||||
|
||||
capabilities.textDocument.completion.completionItem.documentationFormat = { 'markdown', 'plaintext' }
|
||||
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
||||
|
||||
@ -55,20 +55,10 @@ return require'packer'.startup(function()
|
||||
-- General Functionality
|
||||
------------------------------------------------------------
|
||||
|
||||
-- Tmux Navigation
|
||||
use({
|
||||
"aserowy/tmux.nvim",
|
||||
config = function() require("tmux").setup() end
|
||||
})
|
||||
-- Find & Search LSP Tags
|
||||
use 'liuchengxu/vista.vim'
|
||||
|
||||
-- Snippets
|
||||
use 'rafamadriz/friendly-snippets'
|
||||
|
||||
-- Rename and Work with Buffer & Tabs
|
||||
use 'pacha/vem-tabline'
|
||||
|
||||
-- Trouble Shows Errors with Files.
|
||||
use {
|
||||
"folke/trouble.nvim",
|
||||
@ -110,8 +100,6 @@ return require'packer'.startup(function()
|
||||
-- Text, Icons, Symbols
|
||||
----------------------------------------------------------
|
||||
|
||||
use 'lukas-reineke/indent-blankline.nvim'
|
||||
|
||||
use 'simrat39/symbols-outline.nvim'
|
||||
|
||||
use 'kyazdani42/nvim-web-devicons'
|
||||
@ -139,10 +127,8 @@ return require'packer'.startup(function()
|
||||
-----------------------------------------------------------
|
||||
-- Various Color Schemes, Dashboard, etc
|
||||
-----------------------------------------------------------
|
||||
use 'tanvirtin/monokai.nvim'
|
||||
use 'Mofiqul/dracula.nvim'
|
||||
use 'lunarvim/colorschemes'
|
||||
use { "catppuccin/nvim", as = "catppuccin" }
|
||||
use {
|
||||
'feline-nvim/feline.nvim',
|
||||
requires = { 'kyazdani42/nvim-web-devicons' },
|
||||
|
||||
@ -19,7 +19,7 @@ opt.clipboard = 'unnamedplus' -- Copy/paste to system clipboard
|
||||
opt.swapfile = false -- Don't use swapfile
|
||||
opt.shadafile = "NONE"
|
||||
opt.shadafile = ""
|
||||
opt.shell = "/bin/zsh"
|
||||
opt.shell = "/bin/bash"
|
||||
opt.updatetime = 200
|
||||
opt.cursorline = true
|
||||
g.markdown_folding = 1
|
||||
@ -48,7 +48,7 @@ opt.synmaxcol = 240 -- Max column for syntax highlight
|
||||
-- Colorscheme
|
||||
-----------------------------------------------------------
|
||||
opt.termguicolors = true -- Enable 24-bit RGB colors
|
||||
cmd [[colorscheme catppuccin-macchiato]]
|
||||
cmd [[colorscheme dracula]]
|
||||
-----------------------------------------------------------
|
||||
-- Tabs, indent
|
||||
-----------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user