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;
}

View file

@ -0,0 +1,98 @@
configuration {
show-icons: true;
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
hide-scrollbar: true;
sidebar-mode: true;
}
* {
bg: #262A2b;
fg: #cfd1dd;
ac: #008dcd;
background-color: @bg;
text-color: @fg;
}
window {
width: 40%;
}
prompt {
enabled: true;
padding: 0.3% 1% 0% -0.5%;
margin: 0 0 0 0;
background-color: @bg;
text-color: @fg;
font: "JetBrainsMono Nerd Font 12";
}
entry {
background-color: @bg;
text-color: @fg;
placeholder-color: @fg;
expand: true;
horizontal-align: 0;
placeholder: "Type to search";
padding: 0.1% 0% 0% 0%;
margin: 0.6% 0 0 0;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @bg;
text-color: @bg;
expand: false;
border: 0% 0% 0% 0%;
border-radius: 0px;
border-color: @ac;
margin: 0% 0% 0% 0%;
padding: 1.5%;
}
listview {
background-color: @al;
padding: 10px;
columns: 4;
lines: 3;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @bg;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @bg;
children: [ inputbar, listview ];
spacing: 0%;
padding: 1%;
}
element {
background-color: @al;
text-color: @fg;
orientation: vertical;
border-radius: 0%;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 49px;
border: 0px;
}
element-text {
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 0.5% 0.5% -0.5% 0.5%;
}
element selected {
background-color: @ac;
text-color: @bg;
}

View file

@ -1,22 +0,0 @@
configuration {
width: 25;
lines: 13;
columns: 2;
font: "RobotoCondensed 12";
bw: 2;
location: 1;
padding: 3;
yoffset: 27;
xoffset: 3;
show-icons: true;
icon-theme: "Paper";
drun-display-format: "{name}";
case-sensitive: false;
cycle: false;
auto-select: false;
line-padding: 6;
separator-style: "solid";
hide-scrollbar: true;
color-normal: "#262A2B,#abb2bf,#262A2B,#008DCD,#262A2B";
color-window: "#262A2B,#1F2324,#58676C";
}