From a9132c57097443a428f32cce7aa94ee80a58f3cc Mon Sep 17 00:00:00 2001 From: masajinobe-ef Date: Wed, 23 Oct 2024 22:33:26 +0500 Subject: [PATCH] up --- index.html | 212 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..eaa87ce --- /dev/null +++ b/index.html @@ -0,0 +1,212 @@ + + + + + + + Modular.nvim + + + + +
+

Modular.nvim

+

+ Image 1 +

+

+ Image 2 +

+ +

Installation

+ +

Install Neovim

+

modular.nvim targets only the latest + stable and + nightly versions of Neovim. + Make sure you have the latest versions installed if you're experiencing issues. +

+ +

Install External Dependencies

+ + +

Install Modular

+

NOTE: Backup your previous configuration (if any exists)

+
mv ~/.config/nvim ~/.config/nvim.bak
+                mv ~/.local/share/nvim ~/.local/share/nvim.bak
+                mv ~/.local/state/nvim ~/.local/state/nvim.bak
+                mv ~/.cache/nvim ~/.cache/nvim.bak
+ +

Neovim's configurations are located under the following paths, depending on your OS:

+ + + + + + + + + + + + + + + + + +
OSPath
Linux, MacOS$XDG_CONFIG_HOME/nvim, ~/.config/nvim
Windows (cmd)%localappdata%\nvim
Windows (powershell)$env:LOCALAPPDATA\nvim
+ +

Clone modular.nvim

+
+ Linux and Mac +
git clone https://github.com/masajinobe-ef/modular.nvim.git
+                    "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
+
+ +
+ Windows +

If you're using cmd.exe:

+
git clone https://github.com/masajinobe-ef/modular.nvim.git "%localappdata%\nvim"
+

If you're using powershell.exe:

+
git clone https://github.com/masajinobe-ef/modular.nvim.git "${env:LOCALAPPDATA}\nvim"
+            
+
+ +

Post Installation

+

Start Neovim

+
nvim
+

That's it! Lazy will install all the plugins you have. Use :Lazy to view + current plugin status. Hit q to close the window.

+ +
+ Fedora Install Steps +
sudo dnf install -y gcc make git ripgrep fd-find unzip neovim
+
+ +
+ Arch Install Steps +
sudo pacman -S --noconfirm --needed gcc make git ripgrep fd unzip neovim
+
+ +

License

+

Based on Kickstart.nvim. + This project is licensed under MIT. Please refer to the LICENSE file for detailed + license information. +

+
+ +
+

Keymaps

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
КлавишаОписание
Telescope
leader + fПоиск файлов
leader + pПоиск проекта
leader + bПоиск буфера
leader + hПоиск по истории
leader + rПоиск текста
leader + kПоиск по ключевым картам
Harpoon
leader + hМеню Harpoon
leader + aДобавить файл в Harpoon
C-1Первый файл Harpoon
+
+ + +