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

Compare commits

...

2 Commits

Author SHA1 Message Date
e0f8af8033 nvim: load style last to overwrite in case 2023-08-14 02:23:46 +02:00
1525c96bb4 maimpick: removed not working color picker 2023-08-14 01:28:47 +02:00
2 changed files with 3 additions and 5 deletions

View File

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

View File

@ -13,6 +13,4 @@ case "$(printf "a selected area\\ncurrent window\\nfull screen\\na selected area
"a selected area (clipboard)") maim -s | ${xclip_cmd} ;; "a selected area (clipboard)") maim -s | ${xclip_cmd} ;;
"current window (clipboard)") maim -i "$(xdotool getactivewindow)" | ${xclip_cmd} ;; "current window (clipboard)") maim -i "$(xdotool getactivewindow)" | ${xclip_cmd} ;;
"full screen (clipboard)") maim | ${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 esac