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
9
dot_oh-my-zsh/plugins/stack/README.md
Normal file
9
dot_oh-my-zsh/plugins/stack/README.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Stack
|
||||
|
||||
This plugin provides completion for [Stack](https://haskellstack.org).
|
||||
|
||||
To use it add stack to the plugins array in your zshrc file.
|
||||
|
||||
```bash
|
||||
plugins=(... stack)
|
||||
```
|
4
dot_oh-my-zsh/plugins/stack/stack.plugin.zsh
Normal file
4
dot_oh-my-zsh/plugins/stack/stack.plugin.zsh
Normal file
|
@ -0,0 +1,4 @@
|
|||
(( $+commands[stack] )) || return
|
||||
|
||||
autoload -U +X bashcompinit && bashcompinit
|
||||
source <(stack --bash-completion-script stack)
|
Reference in a new issue