https://github.com/younghakim7/lvim-config_gy_tabby_ai_macossetting
https://github.com/younghakim7/lvim-config_gy_tabby_ai_macossetting
linux linuxos m1 macbook macos
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/younghakim7/lvim-config_gy_tabby_ai_macossetting
- Owner: YoungHaKim7
- Created: 2023-07-13T13:42:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T16:02:43.000Z (almost 2 years ago)
- Last Synced: 2025-01-16T21:11:30.797Z (11 months ago)
- Topics: linux, linuxos, m1, macbook, macos
- Language: Lua
- Homepage:
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lvim 쓸 때 ```cargo fmt && cargo check``` 활용하자
```bash
$ cargo fmt && cargo check
```
- 요즘 쓰는 LspInlayHint Color Setting[🔝]
- Inlayhint 색깔 hex color (LunarVim Inlayhint Color Settings)
```bash
// 요즘 쓰는 색 240106
:hi LspInlayHint guifg=#35638f guibg=#420517
:hi Comment guifg=#35638f guibg=#420517
// 배경은 어두운 빨간색 / 글씨는 약간 밝은 색
:hi Comment guifg=#8aaecf guibg=#4e1a1a
```
# lvim-config_gyoung
1. install
https://www.lunarvim.org/
2. .config/lvim 세팅
# 이거 원래 주인 영상 My Development Setup (Neovim, Tmux, Alacritty & Rust-based CLI Tools)
https://youtu.be/stCXFxC4OH0
# Fork Github & Thank you.
https://github.com/adibhanna/lvim-config
# zig lang setting 난중에 적용할 예정
https://github.com/NTBBloodbath/zig-tools.nvim
# Todo
- [x] Apply jk as esc
- /lua/user/keymaps.lua
- ```
lvim.keys.insert_mode["jk"] = ""
```
- [x] Apply Relative Number
- /lua/user/option.lua
- ```
local options = {
relativenumber = true, -- set relative numbered lines
}
```
- [x] Apply colorscheme
- - /lua/user/option.lua
- ```
-- lvim.colorscheme = "tokyonight-moon"
-- lvim.colorscheme = "gruvbox-material"
lvim.colorscheme = "habamax"
```
- [x] Rust fmt Setting()
- https://github.com/rust-lang/rust.vim
- The perfect Neovim setup for Rust. https://youtu.be/mh_EJhH49Ms
- /lua/user/plugins.lua
```bash
-- cargo fmt
{
"rust-lang/rust.vim",
ft = "rust",
init = function ()
vim.g.rustfmt_autosave = 1
end
},
```
- [x] zig-tools (lsp) will be applied.
- Good