Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[READY] - added vim config to hide mouse and locale for military time #774

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion nix/machines/_common/base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,35 @@
tmux
usbutils
unixtools.nettools
vim
wget
((vim_configurable.override { }).customize {
name = "vim";
# Install plugins for syntax highlighting of nix files
vimrcConfig.packages.myplugins = with pkgs.vimPlugins; {
start = [
vim-nix
];
opt = [ ];
};
vimrcConfig.customRC = ''
" Turn on syntax highlighting by default
syntax on
" Disable mouse
set mouse-=a
'';
})
];

# Purge nano from being the default
environment.variables = {
EDITOR = "vim";
};

# set 24h military time
i18n.extraLocaleSettings = {
fossadmin marked this conversation as resolved.
Show resolved Hide resolved
LC_TIME = "C.UTF-8";
sarcasticadmin marked this conversation as resolved.
Show resolved Hide resolved
};

# Force noXlibs per recommendation in microVMs
# ref: https://github.com/astro/microvm.nix/issues/167
environment.noXlibs = false;
Expand Down
Loading