No description
Find a file
2024-01-01 20:14:34 +07:00
ftplugin update 2023-04-22 16:29:44 +07:00
ftplugin_backup update 2023-02-26 09:40:35 +07:00
img update 2023-12-02 10:48:44 +07:00
lua update which-key live-server 2024-01-01 20:04:15 +07:00
snippets update config integrasion vscode 2023-12-26 08:16:29 +07:00
.gitignore update config dashboard 2023-02-15 20:00:17 +07:00
init.lua update config vsocde-neovim 2023-12-27 07:34:20 +07:00
lazy-lock.json update which-key live-server 2024-01-01 20:04:15 +07:00
LICENSE update license 2023-01-25 12:21:53 +07:00
README.md Update README.md 2024-01-01 20:14:34 +07:00
settings.vim update config integrasion vscode 2023-12-26 08:16:29 +07:00

Nvim-Lazy

Neovim Lua

Issues Repo Size follow on Twitter

HOME

home!

Demo

demo!

Treesitter dan LSP

demo!

Plugins Manager

PlugManaget!

Javascript Project

PlugManaget!

NeoVim Install & Configuration Guide

Visit Wiki

Basic Requirement

  1. Install Neovim 9.0+ https://github.com/neovim/neovim/releases/tag/stable
  2. C++ (windows) Compiler https://www.msys2.org/
  3. GIT https://git-scm.com/download/win
  4. NodeJs https://nodejs.org/en/
  5. Ripgrep https://github.com/BurntSushi/ripgrep
  6. Lazygit https://github.com/jesseduffield/lazygit
  7. Nerd Font https://github.com/ryanoasis/nerd-fonts
  8. Windows Terminal (Windows) https://apps.microsoft.com/store/detail/windows-terminal/9N0DX20HK701?hl=en-id&gl=id
  9. Powershell (windows) https://apps.microsoft.com/store/detail/powershell/9MZ1SNWT0N5D?hl=en-id&gl=id

Windows

git clone https://github.com/pojokcodeid/nvim-lazy-basic.git "$env:LOCALAPPDATA\nvim"
nvim

Linux

git clone https://github.com/pojokcodeid/nvim-lazy-basic.git ~/.config/nvim

Shortcut Most-Used

:q or :quit -> untuk keluar dari form
:w or :write -> untuk menulis hasil ketik kedalam file (simpan)
:wq -> simpan dan keluar
:q! -> Keluar dan jangan simpan
escape -> normalmode
i -> insert mode
v -> visual mode yaratnya harus normal mode dulu
H -> kiri
j -> bawah
k -> atas
l -> Kanan
:ter -> untuk membuka terminal
0 atau home -> memindahkan kursor keawal line
$ atau end -> cursor ke end of line
gg -> memindahkan kursor ke paling atas
G -> memindahkan kursor ke akhir dari halaman
w -> memindahkan kursor ke kata berikutnya tanpa sepasi
3w -> memindahkan kursor ke 3 kata berikutnya
b -> memindahkan kursor ke kata sebelumnya
3b -> memindahkan kursor ke 3 kata sebelunya
( -> memindahkankursor ke paragraf seblumnya
) -> memindahkan kursor ke pararaf berikutnya
dd -> menghapus text 1 baris
dw -> menghapus 1 kata
d$ -> menghapus kata sampai akhir line dari posisi cursor
d0 -> menghapus kata sampai awal line dari psosi cursor
U -> untuk undo
CTRL + r -> Rendo
Yp -> duplicate line code
yyp -> sama duplicate line code
:m+1 -> pindah 1 baris kebawah
:m-1 -> pindah 1 baris keatas
d -> delete file, delete code yang di seleksi dengan view mode
:e newfolder/newfile.ext -> membuat file baru di folder baru
:f newfolder/newfile.ext -> untuk mengcopy file dari file yang terbuka
bdw -> menghapus 1 kata
dw -> menghapus ke kanan dalam 1 kata pada posisi cursor

Thanks To

https://github.com/LunarVim/Neovim-from-scratch
https://github.com/AstroNvim/AstroNvim