update
This commit is contained in:
parent
076ee2b698
commit
51aeebabcd
@ -15,6 +15,24 @@ vim.opt.rtp:prepend(lazypath)
|
|||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
-- theme
|
-- theme
|
||||||
"navarasu/onedark.nvim",
|
"navarasu/onedark.nvim",
|
||||||
|
"folke/tokyonight.nvim",
|
||||||
|
"shaunsingh/nord.nvim",
|
||||||
|
"morhetz/gruvbox",
|
||||||
|
"ellisonleao/gruvbox.nvim",
|
||||||
|
"Mofiqul/dracula.nvim",
|
||||||
|
"sainnhe/everforest",
|
||||||
|
"catppuccin/nvim",
|
||||||
|
"bluz71/vim-nightfly-colors",
|
||||||
|
"NTBBloodbath/doom-one.nvim",
|
||||||
|
"metalelf0/base16-black-metal-scheme",
|
||||||
|
"EdenEast/nightfox.nvim",
|
||||||
|
"ayu-theme/ayu-vim",
|
||||||
|
"Shatur/neovim-ayu",
|
||||||
|
"lunacookies/vim-colors-xcode",
|
||||||
|
"chriskempson/vim-tomorrow-theme",
|
||||||
|
"maxmx03/solarized.nvim",
|
||||||
|
"antonk52/lake.nvim",
|
||||||
|
"cocopon/iceberg.vim",
|
||||||
|
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
"folke/tokyonight.nvim",
|
"folke/tokyonight.nvim",
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
vim.o.background = 'dark' -- 'dark' or 'light'
|
vim.o.background = 'dark' -- 'dark' or 'light'
|
||||||
vim.cmd[[colorscheme onedark]]
|
-- vim.cmd[[colorscheme onedark]]
|
||||||
|
vim.cmd[[colorscheme gruvbox]]
|
||||||
|
|
||||||
|
-- цвет номеров строк
|
||||||
vim.cmd('hi linenr guifg=white')
|
vim.cmd('hi linenr guifg=white')
|
||||||
|
|
||||||
|
-- vim.cmd('highlight Normal guibg=#000000 ctermbg=black')
|
||||||
|
-- vim.api.nvim_set_hl(0, 'CursorLine', { underline = true })
|
||||||
|
-- vim.cmd('highlight Normal guibg=none ctermbg=none')
|
||||||
|
31
roles/dots/files/home/bin/monitor.sh
Executable file
31
roles/dots/files/home/bin/monitor.sh
Executable file
@ -0,0 +1,31 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if [ $1 == 'help' ];
|
||||||
|
then
|
||||||
|
echo "l, laptop";
|
||||||
|
echo "r, to_right";
|
||||||
|
echo "b, to_bottom";
|
||||||
|
echo "h, dhmi";
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $1 == 'laptop' ] || [ $1 == 'l' ];
|
||||||
|
then
|
||||||
|
xrandr --output eDP1 --mode 1920x1080 --rate 60
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $1 == 'to_right' ] || [ $1 == 'r' ];
|
||||||
|
then
|
||||||
|
xrandr --output HDMI1 --mode 3840x2160 --output eDP1 --mode 1920x1080 --rate 60 --right-of HDMI1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $1 == 'to_bottom' ] || [ $1 == 'b' ];
|
||||||
|
then
|
||||||
|
xrandr --output HDMI1 --mode 3840x2160 --output eDP1 --mode 1920x1080 --rate 60 --below HDMI1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $1 == 'hdmi' ] || [ $1 == 'h' ];
|
||||||
|
then
|
||||||
|
xrandr --output HDMI1 --mode 3840x2160 --output eDP1 --off
|
||||||
|
fi
|
@ -3,5 +3,8 @@
|
|||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
user: "{{ main_user.name }}"
|
user: "{{ main_user.name }}"
|
||||||
loop:
|
loop:
|
||||||
# - vimiv-qt
|
|
||||||
- ttf-devicons
|
- ttf-devicons
|
||||||
|
# -nwg-displays
|
||||||
|
# -postman-bin
|
||||||
|
# -netbird
|
||||||
|
# -k6
|
||||||
|
Loading…
x
Reference in New Issue
Block a user