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
|
||||
transport = local
|
||||
callback_whitelist = junit
|
||||
callback_whitelist = junit, timer, profile_roles
|
||||
|
|
|
@ -28,7 +28,12 @@
|
|||
|
||||
" Set encoding to utf8
|
||||
set encoding=UTF-8
|
||||
|
||||
" Set no compatible
|
||||
set nocompatible
|
||||
" File type plugin on
|
||||
filetype plugin on
|
||||
" Turn on syntax
|
||||
syntax on
|
||||
" install plugins automatically
|
||||
autocmd VimEnter *
|
||||
\ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
|
||||
|
@ -108,13 +113,13 @@ let NERDTreeIgnore=['\.git$']
|
|||
" Theme settings
|
||||
"==============================================================================
|
||||
|
||||
"let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
||||
"let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
|
||||
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
||||
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
|
||||
"set termguicolors
|
||||
" Theme
|
||||
colorscheme nord
|
||||
" Setting dark mode
|
||||
"set background=dark
|
||||
set background=dark
|
||||
|
||||
"==============================================================================
|
||||
" line number
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
- hosts: localhost
|
||||
vars:
|
||||
# Theme options: monokai, gruvbox, nord
|
||||
theme: nord
|
||||
theme: gruvbox
|
||||
# The running user
|
||||
running_user: "{{ ansible_user_id }}"
|
||||
roles:
|
||||
|
|
Loading…
Reference in a new issue