[[🗃️NeoVim]]のパッケージマネージャー - init.luaにかくらしい。 - dotfilesに追加して、シンボリックリンクをはった。 ```shell mkdir nvim && cd nvim ls touch init.lua ln -sF ~/dotfiles/nvim ~/.config ``` - init.luaについか ```lua local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath) ``` - keyの設定の仕方 - [Vimのキーマッピング(:map)で使える表記 - ぼっち勉強会](https://kannokanno.hatenablog.com/entry/2013/05/05/130219) - 一旦、スターターキットをいれた。 - [GitHub - LazyVim/LazyVim: Neovim config for the lazy](https://github.com/LazyVim/LazyVim)