re-add ollama to vim
This commit is contained in:
parent
2d86372bd3
commit
a7ea8d70a7
3 changed files with 9 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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")
|
||||
];
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
installBatSyntax = true;
|
||||
installVimSyntax = true;
|
||||
settings = {
|
||||
font-size = 10;
|
||||
font-size = 12;
|
||||
cursor-style = "bar";
|
||||
keybind = [
|
||||
"shift+right=next_tab"
|
||||
|
|
Loading…
Add table
Reference in a new issue