diff options
| -rw-r--r-- | general/settings.vim | 2 | ||||
| -rwxr-xr-x | utils/install.sh | 4 | ||||
| -rw-r--r-- | vim-plug/plugins.vim | 1 | 
3 files changed, 4 insertions, 3 deletions
diff --git a/general/settings.vim b/general/settings.vim index f1129e99..06b13ede 100644 --- a/general/settings.vim +++ b/general/settings.vim @@ -35,7 +35,7 @@ if !exists('g:vscode')    set timeoutlen=100                      " By default timeoutlen is 1000 ms    set clipboard=unnamedplus               " Copy paste between vim and everything else    set incsearch -  " set guifont=Hack\ Nerd\ Font +  set guifont=Hack\ Nerd\ Font    " let $NVIM_TUI_ENABLE_TRUE_COLOR=1    " set mmp=1300    " set autochdir                           " Your working directory will always be the same as your working directory diff --git a/utils/install.sh b/utils/install.sh index 0190f7bb..53f23dd7 100755 --- a/utils/install.sh +++ b/utils/install.sh @@ -6,13 +6,13 @@ set -o errexit    # exit when command fails  installnode() { \    echo "Installing node..." -  curl -sL install-node.now.sh/lts | bash +  sudo curl -sL install-node.now.sh/lts | bash    npm i -g neovim  }  installpip() { \    echo "Installing pip..." -  curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py +  sudo curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py    python3 get-pip.py    rm get-pip.py  } diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim index 8f8eb989..97396f03 100644 --- a/vim-plug/plugins.vim +++ b/vim-plug/plugins.vim @@ -49,6 +49,7 @@ call plug#begin('~/.config/nvim/autoload/plugged')      Plug 'christianchiarulli/onedark.vim'      " Plug 'kaicataldo/material.vim'      " Plug 'NLKNguyen/papercolor-theme' +    " Plug 'tomasiser/vim-code-dark'      " Intellisense      Plug 'neoclide/coc.nvim', {'branch': 'release'}      " Status Line  | 
