0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

NeovimでTerminer開発環境構築。

1.使用環境

  • Ubuntu 24.04.1 LTS(desktop)

2.必要ツール

  • Neovim v0.9.0以上
  • git v2.45.0以上
  • Nerd Font 最新
  • ripgrep 最新

3.Lazy.luaパッケージ管理ツール呼び込み

图片.png

4.Theme導入(ここでは"catppuccin"使用する)

・pluginsフォルダでTheme専用ファイル作成し下記ソースコピー

return { 
 "catppuccin/nvim",
 name = "catppuccin",
 priority = 1000,
 config = function()
   vim.cmd("colorscheme catppuccin")
 end
}

5.Telescope導入

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?