re-add ollama to vim

This commit is contained in:
albert 2025-01-24 17:24:50 -08:00
parent 2d86372bd3
commit a7ea8d70a7
Signed by: albert
GPG key ID: 3895DD267CA11BA9
3 changed files with 9 additions and 7 deletions
docs
home-manager/common/software

View file

@ -1,5 +1,5 @@
#!/usr/bin/env bash
pushd /etc/nixos/git
pushd /etc/nixos/git || exit
# Home-Manager Setup
echo ">>> Setting up Home Manager..... "
@ -35,8 +35,10 @@ echo ">>> !!!!!"
# Set up ssh keys
echo ">>> Setting up SSH Keys..... "
ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N ""
echo "" >> ./keys/ssh/keys.txt
echo "# ($(date)) $(whoami)@$(hostname)" >> ./keys/ssh/keys.txt
{
echo ""
echo "# ($(date)) $(whoami)@$(hostname)"
} >> ./keys/ssh/keys.txt
cat /home/albert/.ssh/id_ed25519.pub >> ./keys/ssh/keys.txt
# Add all changes to git and and push

View file

@ -79,8 +79,8 @@
(nmap "<leader>mu" ":MCunderCursor<CR>" // desc "Select [U]nder Corsor")
(nmap "<leader>mp" ":MCpattern<CR>" // desc "Select [P]attern")
# Ollama
# (nmap "<leader>os" ":OllamaServe<CR>" // desc "Ollama [S]erve")
# (nmap "<leader>op" ":Ollama<CR>" // desc "Ollama [P]rompt")
# (nmap "<leader>om" ":OllamaModel<CR>" // desc "Ollama [M]odel")
(nmap "<leader>os" ":OllamaServe<CR>" // desc "Ollama [S]erve")
(nmap "<leader>op" ":Ollama<CR>" // desc "Ollama [P]rompt")
(nmap "<leader>om" ":OllamaModel<CR>" // desc "Ollama [M]odel")
];
}

View file

@ -14,7 +14,7 @@
installBatSyntax = true;
installVimSyntax = true;
settings = {
font-size = 10;
font-size = 12;
cursor-style = "bar";
keybind = [
"shift+right=next_tab"