mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 08:30:32 +01:00
Further neovim config; enable gnupgp
This commit is contained in:
parent
a9b467728e
commit
54eb1e446a
|
@ -39,7 +39,7 @@ config.text_background_opacity = .4
|
|||
config.enable_scroll_bar = false
|
||||
config.enable_tab_bar = true
|
||||
config.tab_bar_at_bottom = true
|
||||
config.enable_wayland = false
|
||||
config.enable_wayland = true
|
||||
config.front_end = "OpenGL"
|
||||
config.warn_about_missing_glyphs = false
|
||||
return config
|
||||
|
|
|
@ -77,7 +77,19 @@
|
|||
};
|
||||
gitsigns.enable = true;
|
||||
fugitive.enable = true;
|
||||
treesitter.enable = true;
|
||||
treesitter = {
|
||||
enable = true;
|
||||
folding = true;
|
||||
indent = true;
|
||||
nixvimInjections = true;
|
||||
};
|
||||
treesitter-refactor = {
|
||||
enable = true;
|
||||
smartRename.enable = true;
|
||||
highlightCurrentScope.enable = true;
|
||||
navigation.enable = true;
|
||||
};
|
||||
cursorline.enable = true;
|
||||
#nvim-cmp = {
|
||||
# enable = true;
|
||||
# sources = [
|
||||
|
@ -200,6 +212,8 @@
|
|||
btop
|
||||
iftop
|
||||
|
||||
zathura
|
||||
|
||||
strace
|
||||
ltrace
|
||||
|
||||
|
|
|
@ -142,10 +142,12 @@
|
|||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
# programs.gnupg.agent = {
|
||||
# enable = true;
|
||||
# enableSSHSupport = true;
|
||||
# };
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
services.udev.packages = [ pkgs.yubikey-personalization ];
|
||||
services.pcscd.enable = true;
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
|
|
Loading…
Reference in a new issue