This commit is contained in:
fqbn207
2025-01-08 04:52:20 +01:00
parent 372fdc195e
commit 3238b146d9
17 changed files with 9 additions and 14 deletions

View File

@ -168,6 +168,7 @@ in
pavucontrol pavucontrol
usbutils usbutils
alsa-utils alsa-utils
neovide
# cli # cli
neofetch neofetch
@ -277,7 +278,7 @@ in
"pacman.conf".source = ./modules/raw/pacman.conf; "pacman.conf".source = ./modules/raw/pacman.conf;
}; };
system.stateVersion = "24.11"; system.stateVersion = "unstable";
home-manager.users.fabian = ./modules/home.nix; home-manager.users.fabian = ./modules/home.nix;
} }

View File

@ -1,8 +1,8 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = [ imports = [
./nvim/default.nix ./editors/nvim/default.nix
./sway/default.nix ./wm/sway/default.nix
./bash.nix ./bash.nix
./git.nix ./git.nix
./tmux.nix ./tmux.nix

View File

@ -28,7 +28,7 @@ in
enable = true; enable = true;
plugins = { plugins = {
transparent = { transparent = {
enable = true; enable = false;
settings = { settings = {
groups = [ groups = [
"Normal" "Normal"

View File

@ -37,12 +37,6 @@
virtual_lines = false, virtual_lines = false,
}) })
vim.api.nvim_create_autocmd("VimEnter", {
callback = function()
vim.cmd("TransparentEnable")
end,
})
vim.cmd [[ vim.cmd [[
hi VertSplit guibg=NONE guifg=#000000 hi VertSplit guibg=NONE guifg=#000000
cnoreabbrev W! w! cnoreabbrev W! w!

View File

@ -7,9 +7,6 @@
{ {
programs.nixvim = { programs.nixvim = {
plugins = { plugins = {
treesitter-context = {
enable = true;
};
treesitter = { treesitter = {
enable = true; enable = true;
grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [ grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [

View File

@ -21,7 +21,7 @@
unbind % unbind %
bind t new-window bind t new-window
bind -n M-q previous-window bind -n M-w previous-window
bind -n M-e next-window bind -n M-e next-window
bind r source-file ~/.config/tmux/tmux.conf bind r source-file ~/.config/tmux/tmux.conf
bind -n M-Left select-pane -L bind -n M-Left select-pane -L
@ -29,6 +29,9 @@
bind -n M-Up select-pane -U bind -n M-Up select-pane -U
bind -n M-Down select-pane -D bind -n M-Down select-pane -D
setw -g window-status-current-format "#T(#I:#W#F)"
setw -g window-status-format "#T(#I:#W#F)"
set-option -s status-interval 1 set-option -s status-interval 1
set -g status-right-length 100 set -g status-right-length 100
set -g @net_speed_interfaces "wg0-mullvad" set -g @net_speed_interfaces "wg0-mullvad"