mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-25 00:35:25 +00:00
Added ansible callbacks to time plays
This commit is contained in:
parent
966b71923b
commit
1c0a79731a
3 changed files with 11 additions and 6 deletions
|
@ -2,4 +2,4 @@
|
||||||
|
|
||||||
output_dir = /tmp/artifacts
|
output_dir = /tmp/artifacts
|
||||||
transport = local
|
transport = local
|
||||||
callback_whitelist = junit
|
callback_whitelist = junit, timer, profile_roles
|
||||||
|
|
|
@ -28,7 +28,12 @@
|
||||||
|
|
||||||
" Set encoding to utf8
|
" Set encoding to utf8
|
||||||
set encoding=UTF-8
|
set encoding=UTF-8
|
||||||
|
" Set no compatible
|
||||||
|
set nocompatible
|
||||||
|
" File type plugin on
|
||||||
|
filetype plugin on
|
||||||
|
" Turn on syntax
|
||||||
|
syntax on
|
||||||
" install plugins automatically
|
" install plugins automatically
|
||||||
autocmd VimEnter *
|
autocmd VimEnter *
|
||||||
\ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
|
\ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
|
||||||
|
@ -108,13 +113,13 @@ let NERDTreeIgnore=['\.git$']
|
||||||
" Theme settings
|
" Theme settings
|
||||||
"==============================================================================
|
"==============================================================================
|
||||||
|
|
||||||
"let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
||||||
"let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
|
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
|
||||||
"set termguicolors
|
"set termguicolors
|
||||||
" Theme
|
" Theme
|
||||||
colorscheme nord
|
colorscheme nord
|
||||||
" Setting dark mode
|
" Setting dark mode
|
||||||
"set background=dark
|
set background=dark
|
||||||
|
|
||||||
"==============================================================================
|
"==============================================================================
|
||||||
" line number
|
" line number
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
vars:
|
vars:
|
||||||
# Theme options: monokai, gruvbox, nord
|
# Theme options: monokai, gruvbox, nord
|
||||||
theme: nord
|
theme: gruvbox
|
||||||
# The running user
|
# The running user
|
||||||
running_user: "{{ ansible_user_id }}"
|
running_user: "{{ ansible_user_id }}"
|
||||||
roles:
|
roles:
|
||||||
|
|
Loading…
Reference in a new issue