Added basic nvim config, replaced vim with nvim
This commit is contained in:
parent
624d12439c
commit
ea2e6747d9
1972 changed files with 126578 additions and 0 deletions
10
dot_oh-my-zsh/plugins/thor/README.md
Normal file
10
dot_oh-my-zsh/plugins/thor/README.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Thor plugin
|
||||
|
||||
This plugin adds completion for [Thor](http://whatisthor.com/),
|
||||
a ruby toolkit for building powerful command-line interfaces.
|
||||
|
||||
To use it, add `thor` to the plugins array in your zshrc file:
|
||||
|
||||
```zsh
|
||||
plugins=(... thor)
|
||||
```
|
4
dot_oh-my-zsh/plugins/thor/_thor
Normal file
4
dot_oh-my-zsh/plugins/thor/_thor
Normal file
|
@ -0,0 +1,4 @@
|
|||
#compdef thor
|
||||
#autoload
|
||||
|
||||
compadd `thor list | grep thor | cut -d " " -f 2`
|
Reference in a new issue