Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
631d0e6740 | ||
|
78c199a91e | ||
|
8ea6633095 | ||
|
1ba7f35e4b | ||
|
327aa3043b | ||
|
a899b1450b | ||
|
83eb92da3b |
27
README.md
27
README.md
|
@ -1,3 +1,26 @@
|
||||||
# nvim
|
# NVIM by MIRZAEV
|
||||||
|
My settings, keymaps and plugins for NeoVim 😼<br>
|
||||||
|
<small><i>The installer only works with [fish](https://fishshell.com/) and [ubuntu](https://ubuntu.com/)</i></small>
|
||||||
|
|
||||||
My settings, keymaps and plugins for NeoVim
|
# Install
|
||||||
|
|
||||||
|
### Send these commands
|
||||||
|
1. `cd ~/.config`
|
||||||
|
2. `git clone https://git.svoboda.works/mirzaev/nvim`
|
||||||
|
3. `cd nvim`
|
||||||
|
4. `./install.sh -u`
|
||||||
|
|
||||||
|
### Open nvim and then
|
||||||
|
1. `:PackerSync`
|
||||||
|
2. `:PackerSync` (yeah, again)
|
||||||
|
3. `:TSInstall fish php html css javascript` (add your languages here)
|
||||||
|
4. `:COQdeps`
|
||||||
|
|
||||||
|
<small><b>Have fun!</b></small>
|
||||||
|
|
||||||
|
# Installer screenshots
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
# NVIM screenshots
|
||||||
|
later
|
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
After Width: | Height: | Size: 73 KiB |
|
@ -80,7 +80,7 @@ else
|
||||||
function print -a TYPE PARAM1 PARAM2 -d "Messages text"
|
function print -a TYPE PARAM1 PARAM2 -d "Messages text"
|
||||||
switch $TYPE
|
switch $TYPE
|
||||||
case HELP
|
case HELP
|
||||||
set_color yellow; echo -n "[mirzaev/nvim] "; set_color brcyan; echo -n "[INFORMATION] "; set_color -o white; echo "Format: install.sh [flags]"; echo; set_color normal; set_color yellow; echo -n " -u "; set_color cyan; echo -n "--update "; set_color -d white; echo "Update all dependencies"; set_color normal; set_color yellow; echo -n " -f "; set_color cyan; echo -n "--force "; set_color -d white; echo "Do not ask for confirmations"; set_color normal; set_color yellow; echo -n " -v "; set_color cyan; echo -n "--verbose "; set_color -d white; echo "Connect TTY to the output buffer"; set_color normal; set_color yellow; echo -n " -h "; set_color cyan; echo -n "--help "; set_color -d white; echo "Send this message"; set_color normal; set_color white; echo; echo -n "This installer only works for "; set_color yellow; echo -n "fish "; set_color white; echo -n "and "; set_color red; echo "ubuntu";
|
set_color yellow; echo -n "[mirzaev/nvim] "; set_color brcyan; echo -n "[INFORMATION] "; set_color -o white; echo "Format: install.sh [flags]"; echo; set_color normal; set_color yellow; echo -n " -u "; set_color cyan; echo -n "--update "; set_color -d white; echo "Update all dependencies"; set_color normal; set_color yellow; echo -n " -f "; set_color cyan; echo -n "--force "; set_color -d white; echo "Do not ask for confirmations"; set_color normal; set_color yellow; echo -n " -v "; set_color cyan; echo -n "--verbose "; set_color -d white; echo "Connect TTY to the output buffer"; set_color normal; set_color yellow; echo -n " -h "; set_color cyan; echo -n "--help "; set_color -d white; echo "Send this message"; set_color normal; set_color white; echo; echo -n "This installer only works with "; set_color yellow; echo -n "fish "; set_color white; echo -n "and "; set_color red; echo "ubuntu";
|
||||||
case NVIM_NOT_INSTALLED
|
case NVIM_NOT_INSTALLED
|
||||||
set_color yellow; echo -n "[mirzaev/nvim] "; set_color red; echo -n "[ERROR] "; set_color white; echo "NeoVim is not installed";
|
set_color yellow; echo -n "[mirzaev/nvim] "; set_color red; echo -n "[ERROR] "; set_color white; echo "NeoVim is not installed";
|
||||||
case PACKER_INSTALL
|
case PACKER_INSTALL
|
||||||
|
|
Loading…
Reference in New Issue