Initial testing with new Hyprland keybinding display script

This commit is contained in:
Tyler Kelley 2024-02-19 21:57:48 -06:00
parent 4c24192b1f
commit 2969ff18b8
4 changed files with 32 additions and 17 deletions

View File

@ -173,8 +173,8 @@ in with lib; {
bind = ${modifier},8,workspace,8
bind = ${modifier},9,workspace,9
bind = ${modifier},0,workspace,10
bind = ${modifier},SPACE,movetoworkspace,special
bind = ${modifier}SHIFT,SPACE,togglespecialworkspace
bind = ${modifier}SHIFT,SPACE,movetoworkspace,special
bind = ${modifier},SPACE,togglespecialworkspace
bind = ${modifier}SHIFT,1,movetoworkspace,1
bind = ${modifier}SHIFT,2,movetoworkspace,2
bind = ${modifier}SHIFT,3,movetoworkspace,3

View File

@ -30,6 +30,7 @@ in {
servers = {
tsserver.enable = true;
lua-ls.enable = true;
bashls.enable = true;
rust-analyzer = {
enable = true;
installRustc = true;
@ -79,6 +80,7 @@ in {
vim.keymap.set('n', '<leader>s', function()
builtin.grep_string({ search = vim.fn.input("Grep > ") })
end)
vim.api.nvim_set_option("clipboard","unnamed")
'';
extraConfigVim = ''
@ -87,6 +89,17 @@ in {
inoremap jj <ESC>
let s:guifontsize = 16
let s:guifont = "JetBrainsMono\\ Nerd\\ Font"
" " Copy to clipboard
vnoremap <leader>y "+y
nnoremap <leader>Y "+yg_
nnoremap <leader>y "+y
nnoremap <leader>yy "+yy
" " Paste from clipboard
nnoremap <leader>p "+p
nnoremap <leader>P "+P
vnoremap <leader>p "+p
vnoremap <leader>P "+P
'';
keymaps = [

View File

@ -15,22 +15,23 @@
networkmanagerapplet yad playerctl nh
];
programs.steam.gamescopeSession.enable = true;
programs.dconf.enable = true;
programs.seahorse.enable=true;
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
};
programs.fuse.userAllowOther = true;
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
programs = {
steam.gamescopeSession.enable = true;
dconf.enable = true;
seahorse.enable=true;
hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
};
fuse.userAllowOther = true;
mtr.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
virt-manager.enable = true;
};
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
}

View File

@ -29,6 +29,7 @@ in
".ssh"
".config/discord"
".config/obs-studio"
".steam"
];
files = [
];