polybar and vimrc
This commit is contained in:
parent
3cee6dc6c3
commit
218dcb7d5d
|
@ -173,6 +173,7 @@ format-background = ${colors.background-alt}
|
|||
format-foreground = ${colors.foreground}
|
||||
format-padding = 2
|
||||
label-underline = ${colors.primary}
|
||||
label-maxlen = 30
|
||||
|
||||
[module/memory]
|
||||
type = internal/memory
|
||||
|
|
22
vimrc/.vimrc
22
vimrc/.vimrc
|
@ -1,2 +1,22 @@
|
|||
set number
|
||||
" Set
|
||||
filetype indent plugin on
|
||||
|
||||
" Syntax highlighting
|
||||
syntax on
|
||||
|
||||
" Add number rows
|
||||
set number
|
||||
|
||||
" No swap file
|
||||
set noswapfile
|
||||
|
||||
" Incremental search & highlight
|
||||
set incsearch
|
||||
set hls
|
||||
|
||||
" Runtime path
|
||||
let $RTP=split(&runtimepath, ',')[0]
|
||||
let $RC="$HOME/.vimrc"
|
||||
|
||||
" Set default path
|
||||
set path=.,**
|
||||
|
|
Loading…
Reference in New Issue