Update rofi, add rifile to ranger, add ale to nvim

This commit is contained in:
Smirnov Alexandr 2021-03-29 19:16:45 +03:00
parent 5cc86198aa
commit 3bad265983
15 changed files with 232 additions and 123 deletions

View file

@ -1,40 +1,41 @@
* {
background-color: #262A2B;
text-color: #93A1A1;
font: "Hack 9";
font: "JetbrainsMono Nerd Font 9";
prompt-padding: 4px;
selected-background: #008DCD;
selected-foreground: #ffffff;
}
#window {
window {
anchor: north;
location: north;
width: 100%;
height: 24px;
padding: 0px;
children: [ horibox ];
}
#horibox {
horibox {
orientation: horizontal;
height: 24px;
children: [ prompt, entry, listview ];
}
#prompt {
prompt {
padding: @prompt-padding;
background-color: @selected-background;
text-color: @selected-foreground;
font: @font;
}
#listview {
listview {
layout: horizontal;
spacing: 0px;
lines: 100;
}
#entry {
entry {
padding: 4px 4px;
expand: false;
width: 170px;
}
#element { padding: 4px 8px; }
#element selected {
element { padding: 4px 8px; }
element selected {
background-color: @selected-background;
text-color: @selected-foreground;
}