$ cargo fmt && cargo check
- 요즘 쓰는 LspInlayHint Color Setting[🔝]
- Inlayhint 색깔 hex color (LunarVim Inlayhint Color Settings)
// 요즘 쓰는 색 240106
:hi LspInlayHint guifg=#35638f guibg=#420517
:hi Comment guifg=#35638f guibg=#420517
// 배경은 어두운 빨간색 / 글씨는 약간 밝은 색
:hi Comment guifg=#8aaecf guibg=#4e1a1a
-
install https://www.lunarvim.org/
-
.config/lvim 세팅
https://github.com/adibhanna/lvim-config
https://github.com/NTBBloodbath/zig-tools.nvim
-
Apply jk as esc
- /lua/user/keymaps.lua
-
lvim.keys.insert_mode["jk"] = "<Esc>"
-
Apply Relative Number
- /lua/user/option.lua
-
local options = { relativenumber = true, -- set relative numbered lines }
-
Apply colorscheme
-
- /lua/user/option.lua
-
-- lvim.colorscheme = "tokyonight-moon" -- lvim.colorscheme = "gruvbox-material" lvim.colorscheme = "habamax"
-
-
Rust fmt Setting()
-
The perfect Neovim setup for Rust. https://youtu.be/mh_EJhH49Ms
- /lua/user/plugins.lua
-- cargo fmt { "rust-lang/rust.vim", ft = "rust", init = function () vim.g.rustfmt_autosave = 1 end },
-
zig-tools (lsp) will be applied.
- Good