1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-04-20 00:37:44 +02:00

Compare commits

..

No commits in common. "e0f8af80338270014e502afb3df0976c3e8fe6c0" and "de5f6fbb123c4add0f08da18e12631ad887a2f91" have entirely different histories.

2 changed files with 5 additions and 3 deletions

View File

@ -74,6 +74,9 @@ vim.o.conceallevel = 0
vim.g.markdown_folding = 1
-- load general mapped keys
require('style')
-- set filetypes correctly by extension
require('autocmd')
@ -82,6 +85,3 @@ require('loadplugins')
-- load general mapped keys
require('keymap')
-- load general mapped keys
require('style')

View File

@ -13,4 +13,6 @@ case "$(printf "a selected area\\ncurrent window\\nfull screen\\na selected area
"a selected area (clipboard)") maim -s | ${xclip_cmd} ;;
"current window (clipboard)") maim -i "$(xdotool getactivewindow)" | ${xclip_cmd} ;;
"full screen (clipboard)") maim | ${xclip_cmd} ;;
"color picker (clipboard)") maim -st 0 | convert - -resize 1x1\! -format '%[pixel:p{0,0}]' info:- | ${xclip_cmd} ;;
esac