From c736ac9c64e547b8ac57101b8ab6560d033363a8 Mon Sep 17 00:00:00 2001 From: Martin Pander Date: Wed, 25 Jun 2025 15:37:06 +0200 Subject: [PATCH] Minor things --- nix/user/sh.nix | 2 +- nvim/base.lua | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/user/sh.nix b/nix/user/sh.nix index afbfc7e..796bc70 100644 --- a/nix/user/sh.nix +++ b/nix/user/sh.nix @@ -46,7 +46,7 @@ }; }; - initExtra = '' + initContent = '' HISTCONTROL='erasedups:ignoreboth' HISTIGNORE='&:[ ]*:exit:ls:bg:fg:history:clear' unsetopt beep diff --git a/nvim/base.lua b/nvim/base.lua index c83664b..b952b79 100644 --- a/nvim/base.lua +++ b/nvim/base.lua @@ -50,6 +50,7 @@ vim.opt.syntax = 'on' vim.opt.encoding = 'utf-8' vim.opt.completeopt = 'menu,menuone,noselect' vim.opt.termguicolors = true +vim.opt.conceallevel = 1 ----------------------------