Merge branch 'main' of git.sr.ht:~marcuskammer/cloudinit
This commit is contained in:
commit
45e6ef5711
1 changed files with 3 additions and 16 deletions
|
@ -400,7 +400,7 @@ write_files:
|
|||
set -g status-bg colour235 # Base background color
|
||||
set -g status-fg colour137 # Base foreground color
|
||||
set -g status-interval 5
|
||||
set -g status-left "#[fg=colour81]#H" # Hostname in a different color
|
||||
set -g status-left "#[fg=colour81]#H " # Hostname in a different color
|
||||
set -g status-right "#[fg=colour137]#(date '+%Y-%m-%d %H:%M')" # Date and time
|
||||
|
||||
# Active window in status bar
|
||||
|
@ -453,7 +453,7 @@ write_files:
|
|||
# wget http://prdownloads.sourceforge.net/sbcl/sbcl-2.3.10-source.tar.bz2
|
||||
# Extract it
|
||||
# tar -xjf sbcl-2.3.10-source.tar.bz2
|
||||
git clone --depth 1 --branch sbcl-2.3.10 git://git.code.sf.net/p/sbcl/sbcl ~/sbcl
|
||||
git clone --depth 1 --branch sbcl-2.3.11 git://git.code.sf.net/p/sbcl/sbcl ~/sbcl
|
||||
# Change into the directory
|
||||
cd sbcl
|
||||
# Compile and install
|
||||
|
@ -504,20 +504,7 @@ write_files:
|
|||
# lightweight Emacs setup, primarily for text editing and programming tasks
|
||||
# without the need for image handling within Emacs.
|
||||
|
||||
./configure --with-x-toolkit=no \ # Disables the X toolkit, typically used for GUI elements in X Windows
|
||||
--without-jpeg \ # Disables support for JPEG images
|
||||
--without-png \ # Disables support for PNG images
|
||||
--without-gif \ # Disables support for GIF images
|
||||
--without-tiff \ # Disables support for TIFF images
|
||||
--without-xpm \ # Disables support for XPM (X PixMap) images
|
||||
--without-rsvg \ # Disables support for SVG (Scalable Vector Graphics) via the rsvg library
|
||||
--without-webp \ # Disables support for WebP images
|
||||
--without-lcms2 \ # Disables support for Little CMS 2, a color management system
|
||||
--without-cairo \ # Disables support for the Cairo graphics library
|
||||
--without-gpm \ # Disables support for the General Purpose Mouse (GPM) library
|
||||
--with-json \ # Enables support for JSON (JavaScript Object Notation)
|
||||
--with-native-compilation \ # Enables native compilation of Emacs Lisp code
|
||||
--with-tree-sitter # Enables support for Tree-sitter, an incremental parsing system
|
||||
./configure --without-x --without-jpeg --without-png --without-gif --without-tiff --without-xpm --without-rsvg --without-webp --without-lcms2 --without-cairo --without-gpm --with-json --with-native-compilation --with-tree-sitter
|
||||
|
||||
# Build Emacs
|
||||
make -j$(nproc)
|
||||
|
|
Loading…
Add table
Reference in a new issue