sudo apt install pandoc
as avante dep rendermarkdown.nvim depends on this- Go to https://github.com/yetone/avante.nvim/blob/main/README.md
- find vim-plug instructions, copy snippet
- open
~/.config/nvim/init.vim
- paste snippet between
call plug#
, edit autocmd line toautocmd! User avante.nvim lua require('avante').setup()
- save/
:w<enter>
:PlugUpdate<enter>
- ???
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ~/.config/nvim/avante_providers dir for providers | |
-- ~/.config/nvim/avante_providers/codestral.lua | |
return { | |
endpoint = "https://api.codestral.com/v1", | |
model = "codestral-model-v1", | |
api_key_name = "CODESTRAL_API_KEY", | |
timeout = 30000, | |
temperature = 0.7, | |
max_tokens = 4096, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add Neovim AppImage executable in path - from ~/.deno setup | |
# Usage: | |
# 1. Download nvim AppImage, under $NVIMDIR | |
# 2. In `.bashrc`, add `source "$HOME/.nvim-appimage/env"` | |
NVIMDIR="5HOME/.nvim-appimage" | |
NVMIMG="$NVIMDIR/nvim-linux-x86_64.appimage" | |
case ":${PATH}:" in | |
*:"$NVIMDIR":*) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "OK this runs the basic stuff to work with the lessons. If error, read script and fix it." | |
# npm | |
npm -v | |
# node | |
node -v | |
# ng cli | |
sudo npm install -g @angular/cli | |
ng version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here are a few emoji options that could represent testing: | |
* ๐งช Test Tube: This emoji can represent the idea of testing or experimentation. | |
* ๐ฌ Microscope: This emoji can represent the idea of close examination or analysis, which could be associated with testing. | |
* ๐ Chart Increasing: This emoji can represent the idea of tracking data or results, which could be associated with testing. | |
* ๐ Chart Increasing with Yen: This emoji can represent the idea of tracking financial data or results, which could be associated with testing in a business context. | |
* ๐ Chart Decreasing: This emoji can represent the idea of tracking negative data or results, which could be associated with testing. | |
* ๐ Bar Chart: This emoji can represent the idea of tracking data or results, which could be associated with testing. | |
* ๐ Upwards Arrow with Tip Leftwards: This emoji can represent the idea of positive results or progress, which could be associated with successful testing. | |
* ๐ Downwards Arrow with Tip Rightwards: This emoji can repre |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, ... }: | |
{ | |
imports = [ | |
# Import the default NixOS configuration | |
<nixpkgs/nixos/modules/installer/cd-dvd/x86_64-linux.nix> | |
]; | |
# Set the system timezone | |
time.timeZone = "America/Los_Angeles"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install desktop environment | |
apt-get update && \ | |
apt-get install -y xfce4 firefox thunderbird libreoffice gimp | |
# Set timezone | |
echo "America/Los_Angeles" > /etc/timezone && \ | |
dpkg-reconfigure -f noninteractive tzdata |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Dockerfile | |
# | |
# Use Debian as the base image | |
FROM debian:latest | |
# Install desktop environment | |
RUN apt-get update && \ | |
apt-get install -y xfce4 firefox thunderbird libreoffice gimp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# File: debian_desktop.sls | |
# | |
# Install desktop environment | |
xfce4: | |
pkg.installed | |
# Install common applications | |
firefox: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Cookbook:: debian_desktop | |
# Recipe:: default | |
# | |
# Install desktop environment | |
package 'xfce4' do | |
action :install | |
end |
NewerOlder