2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

LazyVimのターミナルに枠をつける

Last updated at Posted at 2024-03-05

LazyVimはいい感じである。いい感じではあるのだが、残念なことに、ターミナル周りはいい感じではない。いい感じにしたい。する。

いい感じじゃないとは

ターミナルのポップアップには枠がない。それどころか隙間もないので、デフォルトだと以下のように文字列が連結してしまう。google-anyenvなどという興味深い単語の爆誕である。

非常に見づらい。

Pasted image 20240305210906.png

また個人的にclearのショートカットである<C-l>を多用するのだが、これがターミナルモードでもウィンドウ移動に割り当てられているため、うっかり押してしまうとフォーカスが裏側のウィンドウに行ってしまう。ターミナルに隠されているウィンドウに移動してもうれしいことはないので、これを無効化したい。

いい感じとは

枠を付けて見やすくし、

Pasted image 20240305210956.png

<C-l>を無効化して使いやすくする。

設定ファイル

~/.config/nvim/lua/config/keymaps.luaに以下の内容を加えると、

local Util = require("lazyvim.util")
local map = vim.keymap.set

-- ターミナルにおいてのC-hjklを無効化する。
vim.cmd([[
  tunmap <C-h>
  tunmap <C-j>
  tunmap <C-k>
  tunmap <C-l>
]])

-- ターミナルにボーダーを追加する。
local lazyterm = function()
  Util.terminal(nil, { cwd = Util.root(), border = "rounded" })
end
map("n", "<leader>ft", lazyterm, { desc = "Terminal (root dir)" })
map("n", "<C-/>", lazyterm, { desc = "Terminal (root dir)" })
map("n", "<C-_>", lazyterm, { desc = "which_key_ignore" })

いい感じになった。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?