-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vim was giving me static: every time I opened a file, I had to Ctrl-C before text would appear. Then when I tried to save, it would warn me "file already exists". Then when I tried to open another file in a tab or split, it just wouldn't work. Installing the neovim python package is currently necessary to make `nvim +PlugInstall` work right: junegunn/vim-plug#104
- Loading branch information
1 parent
84d1608
commit a445ebf
Showing
5 changed files
with
13 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
export EDITOR=vim | ||
alias vi=vim | ||
export XDG_CONFIG_HOME="$HOME/.config" | ||
export EDITOR=nvim | ||
alias vim=nvim | ||
alias vi=nvim |