dugout-> editor.dugout
Define your default ENVIRONMENT editors. Link editor configuration routines to default editor states
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: editor.dugout
## MODIFIED: 2026/04/20
## OVERVIEW: Define your default ENVIRONMENT editors. Link editor configuration
## routines to default editor states
##
## editor allows you to create a standarized editor for you system, or branch
## sub-system editors according to a defined/enforced format
###############################################################################
## Default editors
export EDITOR="${CONFIGURATION_EDITOR}"
export EDITOR_CODE="${CONFIGURATION_EDITOR_CODE}"
export EDITOR_RICH="${CONFIGURATION_EDITOR_RICH}"
## Default editor modifiers
export EDITOR_STATE_PROGRAMMING="${CONFIGURATION_EDITOR_STATE_STANDARD}"
export EDITOR_STATE_STANDARD="${CONFIGURATION_EDITOR_STATE_STANDARD}"
export EDITOR_STATE_STRICT_MODE="${CONFIGURATION_EDITOR_STATE_STRICT_MODE}"
export EDITOR_STATE_ZEN="${CONFIGURATION_EDITOR_STATE_STANDARD}"