Skip to content

Commit

Permalink
move colors to group_vars
Browse files Browse the repository at this point in the history
  • Loading branch information
pinpox committed Jan 13, 2020
1 parent d37da14 commit 328851a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ Vagrant.configure("2") do |config|
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
vb.gui = true
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
vb.gui = true

# Customize the amount of memory on the VM:
vb.memory = "4096"
end
# Customize the amount of memory on the VM:
vb.memory = "4096"
end
#
# View the documentation for the provider you are using for more
# information on available options.
Expand All @@ -77,7 +77,7 @@ Vagrant.configure("2") do |config|
ansible.galaxy_roles_path = "roles"
ansible.become = true

# ansible.extra_vars = { }
# ansible.inventory_path = "inventory"

end
end
22 changes: 22 additions & 0 deletions group_vars/all
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
scheme: "OneDark"
scheme: "base16-onedark"
author: "Lalit Magant (http://github.com/tilal6991)"

base00: "282c34"
base01: "353b45"
base02: "3e4451"
base03: "545862"
base04: "565c64"
base05: "abb2bf"
base06: "b6bdca"
base07: "c8ccd4"
base08: "e06c75"
base09: "d19a66"
base0A: "e5c07b"
base0B: "98c379"
base0C: "56b6c2"
base0D: "61afef"
base0E: "c678dd"
base0F: "be5046"

0 comments on commit 328851a

Please sign in to comment.