Updated 6. Configurasi (markdown)

Asep Komarudin 2023-12-29 15:42:11 +07:00
parent ca42ac3496
commit 0d950875e2

@ -2,27 +2,27 @@
``` ```
. .
├── init.lua * Ini pintu masuk config ├── init.lua * This is the config entrance
├── lazy-lock.json * Ini file generate dari lazy.nvim ├── lazy-lock.json * This is the file generated from Lazy.nvim
├── lua ├── lua
│   ├── custom │   ├── custom
│   │   ├── dashboard.lua * Ini untuk custom dashboard │   │   ├── dashboard.lua * This is for custom dashboard configurations
│   │   └── default.lua * Ini untuk semua custom (penyesuaian kebutuhan pengguna) │   │   └── default.lua * This is for all custom (adjustment to user needs)
│   ├── default │   ├── default
│   │   ├── autocommands.lua * Ini untuk custom auto command │   │   ├── autocommands.lua * This is for custom auto commands
│   │   ├── init.lua * Ini pintu masuk untuk semua config │   │   ├── init.lua * This is the entry point for all configs
│   │   ├── keymaps.lua * Ini untuk custom keymaps │   │   ├── keymaps.lua * This is for custom keymaps
│   │   ├── lazy.lua * Ini config plugins manager (jangan diubah) │   │   ├── lazy.lua * This is the plugins manager config (don't change it)
│   │   └── options.lua * Ini untuk custom config default neovim │   │   └── options.lua * This is for neovim's default config
│   └── plugin │   └── plugin
│   ├── dapui.lua * Ini contoh plugin │   ├── dapui.lua * This is an example of a plugin
│   └── init.lua * Ini untuk menambah, disable dan overide plugins │   └── init.lua * This is for adding, disabling and overriding plugins
├── my-snippets ├── my-snippets
│   └── package.json * Ini digunakan untuk custom snippets │   └── package.json * This is used for custom snippets
└── README.md └── README.md
``` ```
# KeyMap # KeyMaps
- leader = space bar - leader = space bar
- n = normal mode - n = normal mode
- i = insert mode - i = insert mode