This commit is contained in:
Chris 2020-05-10 13:52:08 -04:00
parent c6cf40cc57
commit dd8fa942f4
3 changed files with 34 additions and 20 deletions

View file

@ -7,6 +7,7 @@ We will be integrating with VSCode using [this](https://github.com/asvetliakov/v
## Install Neovim ## Install Neovim
- On Mac - On Mac
``` ```
brew install neovim brew install neovim
``` ```
@ -16,6 +17,7 @@ We will be integrating with VSCode using [this](https://github.com/asvetliakov/v
``` ```
sudo apt install neovim sudo apt install neovim
``` ```
- Arch - Arch
``` ```
@ -80,11 +82,17 @@ let g:node_host_prog = expand("~/.nvm/versions/node/v12.16.1/bin/neovim-node-hos
Explanations and installation instruction can be found on my blog Explanations and installation instruction can be found on my blog
# TODO # TODO
- Map which key stuff
- People asked about vimwiki I kinda hate it but maybe I'll add it - People asked about vimwiki I kinda hate it but maybe I'll add it
- float term lazy git - float term lazy git
- spectre, or async task/run - spectre, or async task/run
- setup custom paths - setup custom paths
- install script envsubst is your friend - install script envsubst is your friend
- add better whitespace pluginand a toggle, video about clean code maybe - add better whitespace pluginand a toggle, video about clean code maybe
- Remember silent for which key - pear tree (jsx autocomplete would be nice)
- echodoc and buitin support with CoC
- snippets (coc snippets)
- git messenger
- float term
- neovide
- setup global coc extensions to auto install

View file

@ -43,3 +43,8 @@ let g:floaterm_keymap_new = '<F7>'
let g:floaterm_keymap_prev = '<F8>' let g:floaterm_keymap_prev = '<F8>'
let g:floaterm_keymap_next = '<F9>' let g:floaterm_keymap_next = '<F9>'
let g:floaterm_keymap_toggle = '<F12>' let g:floaterm_keymap_toggle = '<F12>'
let g:pear_tree_smart_openers = 1
let g:pear_tree_smart_closers = 1
let g:pear_tree_smart_backspace = 1

View file

@ -40,7 +40,8 @@ call plug#begin('~/.config/nvim/autoload/plugged')
" Cool Icons " Cool Icons
Plug 'ryanoasis/vim-devicons' Plug 'ryanoasis/vim-devicons'
" Auto pairs for '(' '[' '{' " Auto pairs for '(' '[' '{'
Plug 'jiangmiao/auto-pairs' " Plug 'jiangmiao/auto-pairs'
Plug 'tmsvg/pear-tree'
" Themes " Themes
Plug 'christianchiarulli/onedark.vim' Plug 'christianchiarulli/onedark.vim'
" Plug 'kaicataldo/material.vim' " Plug 'kaicataldo/material.vim'