mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-06-24 05:51:46 +02: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},8,workspace,8
|
||||||
bind = ${modifier},9,workspace,9
|
bind = ${modifier},9,workspace,9
|
||||||
bind = ${modifier},0,workspace,10
|
bind = ${modifier},0,workspace,10
|
||||||
bind = ${modifier},SPACE,movetoworkspace,special
|
bind = ${modifier}SHIFT,SPACE,movetoworkspace,special
|
||||||
bind = ${modifier}SHIFT,SPACE,togglespecialworkspace
|
bind = ${modifier},SPACE,togglespecialworkspace
|
||||||
bind = ${modifier}SHIFT,1,movetoworkspace,1
|
bind = ${modifier}SHIFT,1,movetoworkspace,1
|
||||||
bind = ${modifier}SHIFT,2,movetoworkspace,2
|
bind = ${modifier}SHIFT,2,movetoworkspace,2
|
||||||
bind = ${modifier}SHIFT,3,movetoworkspace,3
|
bind = ${modifier}SHIFT,3,movetoworkspace,3
|
||||||
|
@ -30,6 +30,7 @@ in {
|
|||||||
servers = {
|
servers = {
|
||||||
tsserver.enable = true;
|
tsserver.enable = true;
|
||||||
lua-ls.enable = true;
|
lua-ls.enable = true;
|
||||||
|
bashls.enable = true;
|
||||||
rust-analyzer = {
|
rust-analyzer = {
|
||||||
enable = true;
|
enable = true;
|
||||||
installRustc = true;
|
installRustc = true;
|
||||||
@ -79,6 +80,7 @@ in {
|
|||||||
vim.keymap.set('n', '<leader>s', function()
|
vim.keymap.set('n', '<leader>s', function()
|
||||||
builtin.grep_string({ search = vim.fn.input("Grep > ") })
|
builtin.grep_string({ search = vim.fn.input("Grep > ") })
|
||||||
end)
|
end)
|
||||||
|
vim.api.nvim_set_option("clipboard","unnamed")
|
||||||
'';
|
'';
|
||||||
|
|
||||||
extraConfigVim = ''
|
extraConfigVim = ''
|
||||||
@ -87,6 +89,17 @@ in {
|
|||||||
inoremap jj <ESC>
|
inoremap jj <ESC>
|
||||||
let s:guifontsize = 16
|
let s:guifontsize = 16
|
||||||
let s:guifont = "JetBrainsMono\\ Nerd\\ Font"
|
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 = [
|
keymaps = [
|
||||||
|
@ -15,22 +15,23 @@
|
|||||||
networkmanagerapplet yad playerctl nh
|
networkmanagerapplet yad playerctl nh
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.steam.gamescopeSession.enable = true;
|
programs = {
|
||||||
programs.dconf.enable = true;
|
steam.gamescopeSession.enable = true;
|
||||||
programs.seahorse.enable=true;
|
dconf.enable = true;
|
||||||
programs.hyprland = {
|
seahorse.enable=true;
|
||||||
|
hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
|
fuse.userAllowOther = true;
|
||||||
programs.fuse.userAllowOther = true;
|
mtr.enable = true;
|
||||||
programs.mtr.enable = true;
|
gnupg.agent = {
|
||||||
programs.gnupg.agent = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
};
|
};
|
||||||
|
virt-manager.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
virtualisation.libvirtd.enable = true;
|
virtualisation.libvirtd.enable = true;
|
||||||
programs.virt-manager.enable = true;
|
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,7 @@ in
|
|||||||
".ssh"
|
".ssh"
|
||||||
".config/discord"
|
".config/discord"
|
||||||
".config/obs-studio"
|
".config/obs-studio"
|
||||||
|
".steam"
|
||||||
];
|
];
|
||||||
files = [
|
files = [
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user