Skip to content

YoungHaKim7/lvim-config_gyoung_tabby_AI_Setting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

외국분이 내 세팅 더 깔끔하게 정리해줌

Tabby AI(Coding Assistant)

brew install tabbyml/tabby/tabby

# Start server with StarCoder-1B
tabby serve --device metal --model TabbyML/StarCoder-1B
docker run -it \
  --gpus all -p 8080:8080 -v $HOME/.tabby:/data \
  tabbyml/tabby \
  serve --model TabbyML/StarCoder-1B --device cuda
docker run -it \          
  --gpus all -p 8080:8080 -v $HOME/.tabby:/data \
  tabbyml/tabby \
  serve --model TabbyML/Mistral-7B --device cuda

docker run -it \
  --gpus all -p 8080:8080 -v $HOME/.tabby:/data \
  tabbyml/tabby \
  serve --model TabbyML/StarCoder-3B --device cuda
docker run -it \
–gpus all -p 8080:8080 \
-e TABBY_DISABLE_USAGE_COLLECTION=1 \
-v $HOME/.tabby:/data \
tabbyml/tabby \
serve –model TabbyML/CodeLlama-7B –device cuda

lvim 쓸 때 cargo fmt && cargo check 활용하자

$ cargo fmt && cargo check
  • inlayhint 색깔 hex color (LunarVim Inlayhint Color Settings)
// 요즘 쓰는 색 240106
: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

  • 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()

  • zig-tools (lsp) will be applied.

    • todo!()

About

lvim setting __Self-hosted AI coding assistant

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages