diff options
| author | Chris <[email protected]> | 2020-09-03 18:22:54 -0400 | 
|---|---|---|
| committer | Chris <[email protected]> | 2020-09-03 18:22:54 -0400 | 
| commit | 58e714dbd87c0e3b59ceac2a9dad2529f79b6b19 (patch) | |
| tree | d4867f858126a255d83b2eb860e0e410e0e54443 | |
| parent | 459d217cb125a7f701485bdc581ee2dd4fd25dd6 (diff) | |
fixed easy motion, added an optional theme
| -rw-r--r-- | init.vim | 1 | ||||
| -rw-r--r-- | plug-config/easymotion.vim | 4 | ||||
| -rw-r--r-- | themes/nord.vim | 5 | ||||
| -rw-r--r-- | vim-plug/plugins.vim | 1 | 
4 files changed, 9 insertions, 2 deletions
| @@ -24,6 +24,7 @@ else    source $HOME/.config/nvim/themes/onedark.vim    source $HOME/.config/nvim/themes/airline.vim    " source $HOME/.config/nvim/themes/material.vim +  " source $HOME/.config/nvim/themes/nord.vim    " Plugin Configuration    source $HOME/.config/nvim/keys/which-key.vim diff --git a/plug-config/easymotion.vim b/plug-config/easymotion.vim index 065a500b..2b9e8a3d 100644 --- a/plug-config/easymotion.vim +++ b/plug-config/easymotion.vim @@ -16,8 +16,8 @@  " s{char}{char} to move to {char}{char}  nmap s <Plug>(easymotion-s2) -map  n <Plug>(easymotion-next) -map  N <Plug>(easymotion-prev) +" map  n <Plug>(easymotion-next) +" map  N <Plug>(easymotion-prev)  " nmap s <Plug>(easymotion-overwin-f2)  " nmap S <Plug>(easymotion-overwin-t) diff --git a/themes/nord.vim b/themes/nord.vim new file mode 100644 index 00000000..7419e462 --- /dev/null +++ b/themes/nord.vim @@ -0,0 +1,5 @@ +if (has('termguicolors')) +  set termguicolors +endif + +colorscheme nord diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim index c423e0a7..fe6ce307 100644 --- a/vim-plug/plugins.vim +++ b/vim-plug/plugins.vim @@ -49,6 +49,7 @@ call plug#begin('~/.config/nvim/autoload/plugged')      " Themes      Plug 'christianchiarulli/onedark.vim'      Plug 'kaicataldo/material.vim', { 'branch': 'main' } +    Plug 'arcticicestudio/nord-vim'      " Intellisense      Plug 'neoclide/coc.nvim', {'branch': 'release'}      " Status Line | 
