Browse Source

change global opacity + disable mouse in neovim

Noah Vogt 18 hours ago
parent
commit
732ffd533f
2 changed files with 5 additions and 2 deletions
  1. 2 2
      dot-config/hypr/hyprland.conf
  2. 3 0
      dot-config/nvim/lua/options.lua

+ 2 - 2
dot-config/hypr/hyprland.conf

@@ -80,8 +80,8 @@ decoration {
     rounding_power = 2
 
     # Change transparency of focused and unfocused windows
-    active_opacity = 0.9
-    inactive_opacity = 0.9
+    active_opacity = 0.95
+    inactive_opacity = 0.95
 
     shadow {
         enabled = true

+ 3 - 0
dot-config/nvim/lua/options.lua

@@ -60,3 +60,6 @@ opt.sidescrolloff = 5
 
 -- Needed for colorizer plugin
 opt.termguicolors = true
+
+-- Disable Mouse
+vim.opt.mouse = ""