Emacs learning curve is too steep, back to vim

This commit is contained in:
William 2023-08-16 18:28:35 -03:00
parent c4c2a1ba80
commit e4ab300f22
5 changed files with 8 additions and 40 deletions

View file

@ -1,5 +1,5 @@
{ ... }:
{
imports = [ ./home.nix ./programs.nix ./services.nix ];
imports = [ ./home.nix ./programs.nix ];
}

View file

@ -5,7 +5,10 @@
username = "user";
homeDirectory = "/home/user";
stateVersion = "22.05";
sessionVariables = { TZ = ":/etc/localtime"; };
sessionVariables = {
TZ = ":/etc/localtime";
EDITOR = "nvim";
};
file = {
".config/starship.toml".source =
"${inputs.dotfiles}/.config/starship.toml";

View file

@ -47,9 +47,8 @@
mkparents = true;
scrollbar = true;
tabstospaces = true;
tabsize = 4;
tabsize = 2;
colorscheme = "simple";
relativeruler = true;
};
};
fish = {
@ -57,7 +56,8 @@
interactiveShellInit = "nix-your-shell fish | source";
loginShellInit = "nix-your-shell fish | source";
shellAliases = {
emacs = "${config.home.sessionVariables.EDITOR} -nw";
vi = "nvim";
vim = "nvim";
wget = ''wget --hsts-file="$XDG_DATA_HOME/wget-hsts"'';
};
functions = {

View file

@ -1,10 +0,0 @@
{ inputs, config, pkgs, lib, ... }:
{
services.emacs = {
enable = true;
defaultEditor = true;
package = pkgs.emacs29-pgtk;
socketActivation.enable = true;
};
}

View file

@ -25,29 +25,4 @@
"/var/run/current-system/sw/share/applications/koi.desktop";
};
};
xdg.desktopEntries.emacsd = {
name = "Emacs";
exec = "${config.services.emacs.package}/bin/emacsclient -c";
icon = "emacs";
comment = "More than just a text editor";
genericName = "Text Editor";
mimeType = [
"text/english"
"text/plain"
"text/x-makefile"
"text/x-c++hdr"
"text/x-c++src"
"text/x-chdr"
"text/x-csrc"
"text/x-java"
"text/x-moc"
"text/x-pascal"
"text/x-tcl"
"text/x-tex"
"application/x-shellscript"
"text/x-c"
"text/x-c++"
];
categories = [ "Development" "TextEditor" ];
};
}