Remove activity-watcher and add Gamepad support
This commit is contained in:
parent
416b46e04c
commit
f145684e16
4 changed files with 26 additions and 8 deletions
|
@ -140,10 +140,6 @@
|
|||
|
||||
"swww-daemon" # Animated Wallpaper engine
|
||||
"waybar" # Sweet top bar
|
||||
|
||||
# Sleep is needed because otherwise waybar is not initialized
|
||||
"sleep 1 && aw-qt" # ActivityWatch
|
||||
"sleep 1 && aw-awatcher" # ActivityWatcher Wayland Watcher
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -6,6 +6,28 @@
|
|||
|
||||
settings = {
|
||||
vim = {
|
||||
keymaps = [
|
||||
# Tab Keymaps
|
||||
{
|
||||
key = "<leader>t";
|
||||
mode = "n";
|
||||
silent = true;
|
||||
action = ":tabnew<CR>";
|
||||
}
|
||||
{
|
||||
key = "<Tab>";
|
||||
mode = "n";
|
||||
silent = true;
|
||||
action = ":tabnext<CR>";
|
||||
}
|
||||
{
|
||||
key = "<S-Tab>";
|
||||
mode = "n";
|
||||
silent = true;
|
||||
action = ":tabprevious<CR>";
|
||||
}
|
||||
];
|
||||
|
||||
useSystemClipboard = true;
|
||||
lineNumberMode = "number";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue