Skip to content

Commit

Permalink
arg check create_environment script
Browse files Browse the repository at this point in the history
  • Loading branch information
fgoncalves committed Apr 2, 2024
1 parent df42b51 commit fc50dbf
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions create_environment.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/bin/bash

# Check for environment name
if [ -z "$1" ]; then
echo "No environment name supplied"
exit
fi

env_root=lua/$1

# Check if env already exists
Expand Down
1 change: 1 addition & 0 deletions lua/min/globals/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- Initializer for globals
3 changes: 3 additions & 0 deletions lua/min/plugins/sources.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
return {

}
1 change: 1 addition & 0 deletions lua/min/post_load.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- This file runs after everything is loaded initially
Empty file.
1 change: 1 addition & 0 deletions lua/min/preferences/options.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- :help options
Empty file added lua/min/preferences/remaps.lua
Empty file.

0 comments on commit fc50dbf

Please sign in to comment.