summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChris <[email protected]>2020-04-02 12:28:13 -0400
committerChris <[email protected]>2020-04-02 12:28:13 -0400
commit44e323b526c00642f49709ad734ce7e6fdbe2c26 (patch)
treebb2bd09a43906cbf3e7901781807490d90652969 /README.md
parent891d80634492b7d291379f9051c6d814b8f029ec (diff)
auto push
Diffstat (limited to 'README.md')
-rw-r--r--README.md79
1 files changed, 64 insertions, 15 deletions
diff --git a/README.md b/README.md
index 90032db5..f1294097 100644
--- a/README.md
+++ b/README.md
@@ -1,37 +1,85 @@
# Nvim
+Plugging my [blog](chrisatmachine.com)
+Plugging my [YouTube channel](https://www.youtube.com/channel/UCS97tchJDq17Qms3cux8wcA)
+
## Install
-To install run the install script in the install folder
+Dependencies:
+
+- neovim
+- Node
+- Python3
+- Ripgrep
+- fzf
+- ranger
+- hack-nerd-font
+- ranger
+- universal-ctags
+
+### Install dependencies On MacOS
```
-./install
+ brew install node
+ brew install neovim
+ brew install ripgrep
+ brew install fzf
+ brew tap homebrew/cask-fonts
+ brew cask install font-hack-nerd-font
+ brew install ranger
+ brew install --HEAD universal-ctags/universal-ctags/universal-ctags
```
-## Post install
+### Install dependencies on Linux
-After install open Neovim and run the following:
+I assume you can figure it out based on the requirements smart guy
-```
-:UpdateRemotePlugins
+### Setting Node path and Python3 path
-:checkhealth
+#### pythonpath
+
+Open `modules/pythonpath.vim` and point it to a version of python that has neovim installed
+
+example:
+
+```
+let g:python3_host_prog = expand("~/.miniconda/envs/neovim/bin/python3.8")
```
-Follow my development here
+#### nodepath for Coc
-<https://chiarulli.me>
+Open `modules/nodepath.vim` and point it to a version of python that has neovim installed
+example:
+
+```
+let g:coc_node_path = expand("~/.nvm/versions/node/v12.16.1/bin/node")
```
-conda create -n neovim python=3.7
+## Set up plugin manager
+
+```
+sh ~/.config/nvim/install/utils/installer.sh ~/.config/nvim/dein
```
-install ripgrep" for gutentags to ignore .gitignore
+## Install nvim
+
+You should now run `nvim` and wait while the package manager installs your plugins
+
+
+## Post install
-install universal ctags"
+After install open Neovim and run the following:
-make sure you open the language server module and point to the correct binaries such as pyls and vint
+```
+:UpdateRemotePlugins
+
+:checkhealth
+```
+
+## CoC Language support
+
+## ALE Linting
## TODO
@@ -45,6 +93,7 @@ make sure you open the language server module and point to the correct binaries
- Check out more coc extensions
- https://github.com/voldikss/coc-todolist
- VimWiki
-- fix tmux messing up my colors
-- figure out denite and give it a good shortcut
+## Notes
+
+install ripgrep" for gutentags to ignore .gitignore