mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Removed relative nvim line numbers
This commit is contained in:
parent
f5c464af07
commit
299b7c201c
@ -20,7 +20,7 @@
|
|||||||
opts = {
|
opts = {
|
||||||
# Line numbers
|
# Line numbers
|
||||||
number = true; # Show absolute line numbers
|
number = true; # Show absolute line numbers
|
||||||
relativenumber = true; # Show relative line numbers (great for vim motions)
|
#relativenumber = true; # Show relative line numbers (great for vim motions)
|
||||||
|
|
||||||
# Indentation
|
# Indentation
|
||||||
tabstop = 2; # Number of spaces a tab counts for
|
tabstop = 2; # Number of spaces a tab counts for
|
||||||
|
|||||||
@ -1,19 +1,26 @@
|
|||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.nix-citizen.nixosModules.default
|
||||||
|
];
|
||||||
|
|
||||||
|
/*
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
inputs.nix-citizen.packages.${system}.rsi-launcher
|
inputs.nix-citizen.packages.${system}.rsi-launcher
|
||||||
inputs.nix-citizen.packages.${system}.lug-helper
|
inputs.nix-citizen.packages.${system}.lug-helper
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
#programs = {
|
*/
|
||||||
# rsi-launcher = {
|
programs = {
|
||||||
# enable = true;
|
rsi-launcher = {
|
||||||
|
enable = true;
|
||||||
|
includeOverlay = true;
|
||||||
|
|
||||||
# preCommands = ''
|
preCommands = ''
|
||||||
# export MANGO_HUD=1;
|
export MANGO_HUD=1;
|
||||||
# '';
|
'';
|
||||||
# };
|
};
|
||||||
#};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user