summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <adam.moloney.stuck@gmail.com>2021-10-28 00:42:18 +0200
committeradamstuck <adam.moloney.stuck@gmail.com>2021-10-28 08:23:43 +0200
commit30632de771a4c7bcd57ef693cd38549f5f0f0347 (patch)
tree3b5b7ddbb2b549554943336975a73b39d94bb1ad
parentc8ebd37fefd22f83505ad0f7d3147057618d7235 (diff)
vim + nvim removed startify plugin
-rw-r--r--.config/nvim/lua/opts.lua15
-rw-r--r--.config/nvim/lua/plugins.lua3
-rw-r--r--.vimrc14
3 files changed, 2 insertions, 30 deletions
diff --git a/.config/nvim/lua/opts.lua b/.config/nvim/lua/opts.lua
index f53eaf1..a1c0bbf 100644
--- a/.config/nvim/lua/opts.lua
+++ b/.config/nvim/lua/opts.lua
@@ -142,18 +142,3 @@ require("indent_blankline").setup {
buftype_exclude = {"startify", "help", "terminal"},
filetype_exclude = {"startify", "help", "terminal"},
}
-
-vim.cmd [[
- let g:ascii = [
- \' ,, ',
- \' db ',
- \' ',
- \"`7MMpMMMb.`7M' `MF'`7MM `7MMpMMMb.pMMMb. ",
- \' MM MM VA ,V MM MM MM MM ',
- \' MM MM VA ,V MM MM MM MM ',
- \' MM MM VVV MM MM MM MM ',
- \'.JMML JMML. W .JMML..JMML JMML JMML',
- \'',
- \]
- let g:startify_custom_header = startify#pad(g:ascii)
-]]
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index b004eae..77b1bde 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -6,10 +6,11 @@ require('packer').startup(function()
use 'tpope/vim-surround'
use 'tpope/vim-repeat'
use 'b3nj5m1n/kommentary'
- use 'mhinz/vim-startify'
+
use 'neovim/nvim-lspconfig'
use 'hrsh7th/cmp-nvim-lsp'
use 'hrsh7th/nvim-cmp'
+
use "ray-x/lsp_signature.nvim"
use "windwp/nvim-autopairs"
use "lukas-reineke/indent-blankline.nvim"
diff --git a/.vimrc b/.vimrc
index 2f52089..126d4ce 100644
--- a/.vimrc
+++ b/.vimrc
@@ -4,7 +4,6 @@ call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-commentary'
- Plug 'mhinz/vim-startify'
call plug#end()
filetype indent plugin on
@@ -61,16 +60,3 @@ colorscheme gruvbox
highlight CursorLine cterm=NONE ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE
highlight CursorLineNr cterm=bold ctermbg=Black ctermfg=Yellow
set cursorline
-
-let g:ascii = [
-\' ,, ',
-\' db ',
-\' ',
-\"`7M' `MF'`7MM `7MMpMMMb.pMMMb. ",
-\' VA ,V MM MM MM MM ',
-\' VA ,V MM MM MM MM ',
-\' VVV MM MM MM MM ',
-\' W .JMML..JMML JMML JMML',
-\'',
-\]
-let g:startify_custom_header = startify#pad(g:ascii)