1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat: remove manpager replacement for normal machines to improve evaluation speed

This commit is contained in:
oddlama 2024-04-06 16:11:52 +02:00
parent 94ea46f680
commit 303fbd5595
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
5 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,6 @@
./config/htop.nix
./config/impermanence.nix
./config/manpager.nix
./config/neovim.nix
./config/shell
./config/utils.nix

View file

@ -2,6 +2,7 @@
imports = [
./direnv.nix
./gdb.nix
./manpager.nix
];
home = {

View file

@ -7,7 +7,7 @@
prg = lib.getExe (pkgs.nixvim.makeNixvim {
package = pkgs.neovim-clean;
options = {
opts = {
buftype = "nowrite";
backup = false;
modeline = false;

View file

@ -1,5 +1,5 @@
{
programs.nixvim.options = {
programs.nixvim.opts = {
# -------------------------------------------------------------------------------------------------
# General
# -------------------------------------------------------------------------------------------------

View file

@ -19,7 +19,7 @@
};
# Commenting
comment-nvim.enable = true;
comment.enable = true;
# Extend vim's "%" key
vim-matchup.enable = true;