An open API service indexing awesome lists of open source software.

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

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