瀏覽代碼

nixpkgs/neovim: re-add signcolumn to avoid layout shift

Thomas Dy 3 年之前
父節點
當前提交
bafc57a43b
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      .config/nixpkgs/neovim/settings.lua

+ 3 - 0
.config/nixpkgs/neovim/settings.lua

@@ -28,6 +28,9 @@ vim.o.breakindentopt = 'shift:2,sbr'
 -- show whitespace
 vim.o.list = true
 
+-- always show sign column to avoid layout shift when staging
+vim.o.signcolumn = 'yes'
+
 -- make a new copy of the file for backup
 -- setting to no or auto messes with filewatchers
 vim.o.backupcopy = 'yes'