From bfb61dc45c5de0a443f71a1bafe2e956e5e128fc Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Wed, 26 Jan 2022 20:14:49 -0500 Subject: [PATCH] fix (speed): #94 - made init nvim file less obnoxious --- plugin/ctpcmds.vim | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/plugin/ctpcmds.vim b/plugin/ctpcmds.vim index a070964..6d8e259 100644 --- a/plugin/ctpcmds.vim +++ b/plugin/ctpcmds.vim @@ -1,17 +1,3 @@ -" GPL-3.0 License - -" prevent the plugin's interface from loading twice if exists('g:loaded_catppuccin') | finish | endif -let s:save_cpo = &cpo " save user coptions -set cpo&vim " reset them to defaults - -" Interface {{{ -command! -nargs=0 CPClear call v:lua.require'catppuccin.main'.main('clear') -" }}} - -let &cpo = s:save_cpo " restore after -unlet s:save_cpo - -" set to true the var that controls the plugin's loading let g:loaded_catppuccin = 1