Various minor changes

main
Felix Martin 2023-01-25 16:48:31 -05:00
parent daf5aa3fb0
commit d08e9a6001
4 changed files with 7 additions and 6 deletions

View File

@ -371,7 +371,9 @@ globalkeys = gears.table.join(
-- awful.key({ modkey }, "p", function() menubar.show() end,
-- {description = "show the menubar", group = "launcher"})
awful.key({ modkey }, "p", function() awful.util.spawn("rofi -combi-modi window,run,drun,combi -show combi") end,
{description = "show the menubar", group = "launcher"})
{description = "show the menubar", group = "launcher"}),
awful.key({ "any" }, "Print", function() awful.util.spawn("flameshot gui") end,
{description = "take screenshot", group = "launcher"})
)
clientkeys = gears.table.join(

View File

@ -35,7 +35,7 @@ configuration {
/* parse-hosts: false;*/
/* parse-known-hosts: true;*/
/* combi-modi: "window,run";*/
matching: "fuzzy";
matching: "glob";
/* tokenize: true;*/
/* m: "-5";*/
/* filter: ;*/

View File

@ -16,7 +16,7 @@ set t_Co=256
set number
set relativenumber
set tabstop=2
colorscheme Atelier_CaveLight
colorscheme Atelier_CaveDark
" To better see search results
set hlsearch
set incsearch
@ -339,6 +339,6 @@ call plug#begin('~/.vim/plugged')
\ }
call plug#end()
let g:LanguageClient_serverCommands = {
\ 'rust': ['rustup', 'run', 'stable', 'rls'],
\ 'rust': ['rustup', 'run', 'stable', 'rust-analyzer'],
\ }
" }}}

View File

@ -91,6 +91,5 @@
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.startupEditor": "none",
"window.zoomLevel": 1
"workbench.startupEditor": "none"
}