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?

WSL2+Neovim+WezTermのメモ

0
Last updated at Posted at 2026-02-14

この記事について

WSL2+Neovim+WezTerm 環境でNeovimを快適に使用する為に行ったことのメモ。

WezTerm

以下の記事を参考に設定。
透ける設定が見た目も良いし、普通に便利!

image.png

Neovim

LazyVim

LazyVimをインストール(慣れるまで時間かかったけど便利でモダンな雰囲気になる)。

Nerd Fonts

HackGenをインストール。
DepartureMonoも好きだけど。

クリップボードの共有

以下の記事の通りに設定。

Insertモードから抜けた時に半角に切り替える

以下の記事からzenhan.exeをダウンロード。

パスを通して以下の設定を追加。

.config/nvim/lua/config/autocmds.lua
vim.api.nvim_create_autocmd("InsertLeave", {
  callback = function()
    vim.fn.system("zenhan.exe 0")
  end,
})
.config/nvim/lua/config/keymaps.lua
-- jjにしていたけど、日本語入力時に面倒だったので<C-c>に変更
map("i", "<C-c>", "<Esc>:<C-u>w<CR>", { silent = true })
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?