diff --git a/dotfiles/neovim/lua/my/plugins/init.lua b/dotfiles/neovim/lua/my/plugins/init.lua index 74776e6..f98fc16 100644 --- a/dotfiles/neovim/lua/my/plugins/init.lua +++ b/dotfiles/neovim/lua/my/plugins/init.lua @@ -4,6 +4,7 @@ function M.setup() -- Other unconfigured plugins require('nvim-autopairs').setup() require("startup").setup({theme = "dashboard"}) + require("presence"):setup({}) -- Plugins with their own configs: require("my.plugins.cmp").setup() diff --git a/modules/applications/neovim.nix b/modules/applications/neovim.nix index 8e87ee6..62082e2 100644 --- a/modules/applications/neovim.nix +++ b/modules/applications/neovim.nix @@ -76,6 +76,7 @@ in vimux # interact with tmux from within vim vim-tmux-navigator # easly switch between tmux and vim panes arpeggio # allows me to setup chord keybinds (keybinds where all the keys are pressed at the same time) + presence-nvim # discord rich presence # Cmp related stuff. See https://github.com/hrsh7th/nvim-cmp cmp-nvim-lsp diff --git a/modules/themes/themes.nix b/modules/themes/themes.nix index b51ad6c..2ce3fd4 100644 --- a/modules/themes/themes.nix +++ b/modules/themes/themes.nix @@ -4,7 +4,8 @@ in lib.lists.map (theme: pkgs.callPackage theme { }) [ (githubVariant { variant = "light"; - wallpaper = ./wallpapers/wall.png; + # wallpaper = ./wallpapers/wall.png; + wallpaper = ./wallpapers/synthwave.jpg; transparency = 0.8; }) (githubVariant { diff --git a/modules/themes/wallpapers/synthwave.jpg b/modules/themes/wallpapers/synthwave.jpg new file mode 100644 index 0000000..53871d4 Binary files /dev/null and b/modules/themes/wallpapers/synthwave.jpg differ