rearrange folder structure
6
.xonshrc
|
@ -8,9 +8,9 @@ elif $HOSTNAME == "riley-desktop":
|
|||
$XONSH_COLOR_STYLE = 'default'
|
||||
xontrib load argcomplete autovox jedi z bashisms
|
||||
|
||||
source "functions.xsh"
|
||||
source "exceptions.xsh"
|
||||
source "aliases.xsh"
|
||||
source "~/xsh/functions.xsh"
|
||||
source "~/xsh/exceptions.xsh"
|
||||
source "~/xsh/aliases.xsh"
|
||||
|
||||
# TODO: Fix with Arch-based distros
|
||||
# import addins # my extra stuffs :p
|
||||
|
|
Before Width: | Height: | Size: 2.4 MiB After Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 110 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
Before Width: | Height: | Size: 7.5 MiB After Width: | Height: | Size: 7.5 MiB |
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 192 KiB |
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 3.2 MiB After Width: | Height: | Size: 3.2 MiB |
Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 330 KiB After Width: | Height: | Size: 330 KiB |
|
@ -1,4 +0,0 @@
|
|||
from .version import Version
|
||||
from .package import Package
|
||||
|
||||
__all__ = ['Version', 'Package']
|
|
@ -1,4 +1,4 @@
|
|||
source "functions.xsh"
|
||||
source xsh/functions.xsh
|
||||
|
||||
def _debug():
|
||||
if $XONSH_SHOW_TRACEBACK:
|
|
@ -1,4 +1,4 @@
|
|||
source "exceptions.xsh"
|
||||
source xsh/exceptions.xsh
|
||||
|
||||
def in_wsl() -> bool:
|
||||
"""Determines if the system is running inside a WSL environment."""
|