mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-02-23 03:50:47 +01:00
Initial testing with new Hyprland keybinding display script
This commit is contained in:
parent
4c24192b1f
commit
2969ff18b8
@ -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
|
||||
|
@ -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 = [
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ in
|
||||
".ssh"
|
||||
".config/discord"
|
||||
".config/obs-studio"
|
||||
".steam"
|
||||
];
|
||||
files = [
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user