aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2025-11-25 19:53:19 +0000
committerJustine Smithies <justine@smithies.me.uk>2025-11-25 19:53:19 +0000
commit8954529c8bb3f3bd0f2be2895eaafc597a0057b0 (patch)
tree8f56953d95534b2d401ed42f82e1e8440dea7bd5
parent00a9c7e661b5dcb69748e9050bde259303d646d6 (diff)
Removed vim-plug and now using the in built package manager of vim for plugins
-rw-r--r--.vimrc13
1 files changed, 1 insertions, 12 deletions
diff --git a/.vimrc b/.vimrc
index 72bbdb7..445a100 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,15 +1,3 @@
-" Plugins
-call plug#begin()
-
-" Plugins listed below
-Plug 'morhetz/gruvbox'
-Plug 'lilydjwg/colorizer'
-
-call plug#end()
-
-" Call after plugin is loaded
-autocmd vimenter * ++nested colorscheme gruvbox
-
set nocompatible " This fixes the problem where arrow keys do not function properly on some systems.
let mapleader=' ' " Use space for leader key
@@ -23,6 +11,7 @@ let &fillchars ..= ',eob: ' " Hide tildes at EOF
set splitbelow splitright
set cursorline " Highlight the active cursor line
set termguicolors
+colorscheme gruvbox
" Clipboard
set clipboard=unnamedplus