Removed Plugins for server nvim

This commit is contained in:
root
2023-01-23 21:50:17 +00:00
parent e2ae2ecc24
commit b1d2ac048e
5 changed files with 21 additions and 219 deletions

View File

@ -1,53 +0,0 @@
-----------------------------------------------------------
-- Dashboard configuration file
-----------------------------------------------------------
-- Plugin: alpha-nvim
-- url: https://github.com/goolord/alpha-nvim
-- For configuration examples see: https://github.com/goolord/alpha-nvim/discussions/16
local alpha = require 'alpha'
local dashboard = require 'alpha.themes.dashboard'
-- Footer
local function footer()
local version = vim.version()
local print_version = "v" .. version.major .. '.' .. version.minor .. '.' .. version.patch
local datetime = os.date('%Y/%m/%d %H:%M:%S')
return print_version .. ' ' .. datetime
end
-- Banner
local banner = {
" ",
" █████ █████ ██████ █████ ███ ",
"░░███ ░░███ ░░██████ ░░███ ░███ ",
" ░███ ░███ ██████ █████ ████ ░███░███ ░███ ██████ ████████ █████████████ ░███ ",
" ░███████████ ███░░███░░███ ░███ ░███░░███░███ ███░░███░░███░░███░░███░░███░░███░███ ",
" ░███░░░░░███ ░███████ ░███ ░███ ░███ ░░██████ ░███ ░███ ░███ ░░░ ░███ ░███ ░███░███ ",
" ░███ ░███ ░███░░░ ░███ ░███ ░███ ░░█████ ░███ ░███ ░███ ░███ ░███ ░███░░░ ",
" █████ █████░░██████ ░░███████ █████ ░░█████░░██████ █████ █████░███ ████████ ",
"░░░░░ ░░░░░ ░░░░░░ ░░░░░███ ░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░░░░░░ ",
" ███ ░███ ",
" ░░██████ ",
" ░░░░░░ ",
}
dashboard.section.header.val = banner
-- Menu
dashboard.section.buttons.val = {
dashboard.button('e', ' New file', ':ene <BAR> startinsert<CR>'),
dashboard.button('f', ' Find file', ':NvimTreeOpen<CR>'),
dashboard.button('s', ' Settings', ':e $MYVIMRC<CR>'),
dashboard.button('u', ' Update plugins', ':PackerUpdate<CR>'),
dashboard.button('q', ' Quit', ':qa<CR>'),
}
dashboard.section.footer.val = footer()
alpha.setup(dashboard.config)

View File

@ -109,44 +109,6 @@ return require'packer'.startup(function()
use 'rcarriga/nvim-notify'
-----------------------------------------------------------
-- Markdown Plugins
------------------------------------------------------------
use({
'jakewvincent/mkdnflow.nvim',
config = function()
require('mkdnflow').setup({
mappings = {
MkdnToggleToDo = {{'i', 'n'}, '<C-Space>'},
MkdnNewListItem = {{'i'}, '<CR>'},
MkdnEnter = {{'n'}, '<CR>'},
MkdnTableNextCell = false,
MkdnTab = {{'i',}, '<Tab>'},
MkdnSTab = {{'i'}, '<S-Tab>'},
MkdnFollowLink = {'n', '<leader>p'}
}
})
end
})
-- Headlines Extension
use 'lukas-reineke/headlines.nvim'
-- Follow MD Links
use 'jghauser/follow-md-links.nvim'
-- Markdown Preview
use({
"iamcco/markdown-preview.nvim",
run = function() vim.fn["mkdp#util#install"]() end,
})
use 'chentoast/marks.nvim'
-- Prettier Plugin for Neovim specifically
use'MunifTanjim/prettier.nvim'
---------------------------------------------------------
-- Text, Icons, Symbols
----------------------------------------------------------
@ -163,16 +125,6 @@ return require'packer'.startup(function()
use 'nvim-lua/popup.nvim'
use 'nvim-lua/plenary.nvim'
-- Todo & Comments for Organization
use {
"folke/todo-comments.nvim",
requires = "nvim-lua/plenary.nvim",
config = function()
require("todo-comments").setup {
}
end
}
-- The all famous telescope
use {
'nvim-telescope/telescope.nvim', tag = '0.1.0',
@ -190,19 +142,9 @@ return require'packer'.startup(function()
-----------------------------------------------------------
-- Various Color Schemes, Dashboard, etc
-----------------------------------------------------------
use 'tjdevries/colorbuddy.nvim'
use 'bkegley/gloombuddy'
use 'tanvirtin/monokai.nvim'
use 'Mofiqul/dracula.nvim'
use 'lunarvim/colorschemes'
use { 'rose-pine/neovim', as = 'rose-pine' }
use 'folke/tokyonight.nvim'
-- use {
-- "catppuccin/nvim", as = "catppuccin",
-- require("catppuccin").setup({
-- flavour = "catpuccin-mocha"
-- })
-- }
use { "catppuccin/nvim", as = "catppuccin" }
use {
'feline-nvim/feline.nvim',
@ -214,10 +156,4 @@ return require'packer'.startup(function()
'lewis6991/gitsigns.nvim',
requires = { 'nvim-lua/plenary.nvim' },
}
-- The Dashboard
use {
'goolord/alpha-nvim',
requires = { 'kyazdani42/nvim-web-devicons' },
}
end)