nvim(plugin): marks, screen layout migrate to another file

This commit is contained in:
TheK4n 2023-03-23 20:10:05 +03:00
parent ee5f5d8aba
commit 110d30a2e8
3 changed files with 13 additions and 3 deletions

View File

@ -11,11 +11,10 @@
# monitors # screen layout
exec --no-startup-id xrandr --output DVI-D-0 --off --output HDMI-0 --mode 1920x1080 --pos 0x-1080 --rotate normal --output DP-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DP-1 --off exec --no-startup-id ~/.screenlayout/default.sh
for_window [tiling] border pixel 3 for_window [tiling] border pixel 3
exec --no-startup-id picom --inactive-dim 0.2 --no-fading-openclose --inactive-dim-fixed --config /dev/null
set $mod Mod4 set $mod Mod4
exec --no-startup-id xset s off exec --no-startup-id xset s off

View File

@ -30,6 +30,12 @@ local plugins = {
}) })
end, end,
}, },
{
'chentoast/marks.nvim',
config = function()
require("marks").setup()
end
},
{ {
'karb94/neoscroll.nvim', 'karb94/neoscroll.nvim',
config = function() config = function()

View File

@ -0,0 +1,5 @@
#!/bin/sh
xrandr --output DVI-D-0 --off \
--output HDMI-0 --mode 1920x1080 --pos 0x-1080 --rotate normal \
--output DP-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal \
--output DP-1 --off