Compare commits
2 Commits
22cf72d085
...
0e3b094894
Author | SHA1 | Date |
---|---|---|
Sergei Akhmatdinov | 0e3b094894 | |
Sergei Akhmatdinov | 2533e9f5a0 |
|
@ -1,3 +1,3 @@
|
||||||
GuiFont Input:h20
|
GuiFont Input Mono:h20
|
||||||
|
|
||||||
color blackboard
|
color blackboard
|
||||||
|
|
|
@ -9,9 +9,6 @@ export EDITOR='vim'
|
||||||
export PAGER='less'
|
export PAGER='less'
|
||||||
export BROWSER='qutebrowser'
|
export BROWSER='qutebrowser'
|
||||||
|
|
||||||
# Add dotnet tools
|
|
||||||
# export PATH="$PATH:/home/sakhmatd/.dotnet/tools"
|
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
## Functions
|
## Functions
|
||||||
############################################################
|
############################################################
|
||||||
|
@ -38,6 +35,29 @@ transfer()
|
||||||
rm -f $tmpfile;
|
rm -f $tmpfile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Format a file close to suckless.org guidelines
|
||||||
|
indent_suckless()
|
||||||
|
{
|
||||||
|
indent $1 -brs \
|
||||||
|
-nprs \
|
||||||
|
-npcs \
|
||||||
|
-i8 \
|
||||||
|
-fc1 \
|
||||||
|
-br \
|
||||||
|
-brf \
|
||||||
|
-saf \
|
||||||
|
-sai \
|
||||||
|
-saw \
|
||||||
|
-ncs \
|
||||||
|
-nfca \
|
||||||
|
-il0 \
|
||||||
|
-ce \
|
||||||
|
-nss \
|
||||||
|
-c0 \
|
||||||
|
-cd0 \
|
||||||
|
-ut \
|
||||||
|
-o $2
|
||||||
|
}
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
Loading…
Reference in New Issue