2023/11/03

A quick nvim setup on free Google Cloud Console Debian Linux

Once upon a time, Google Cloud Console (now available for free) has been upgraded to this configuration:

  • OS: Debian 11
  • CPU: AMD EPYC 7B12 2250 MHz
  • Memory: 13GB
  • Disk: 13GB

I tried installing a brand new nvim, a simple fast setup. Here are the steps:

Download the latest release of nvim:

wget https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz

Extract the downloaded tarball and place nvim in /opt directory:

sudo tar -C /opt -xf nvim-linux64.tar.gz

Create a symbolic link to make nvim accessible from your user's bin directory:

ln -s /opt/nvim-linux64/bin/nvim ~/bin

For a quick setup of nvim, you can refer to this resource: https://www.lazyvim.org/installation


曾幾何時,Google Cloud 控制台(現在可免費使用)已經升級到以下配置:

  • 操作系統:Debian 11
  • CPU:AMD EPYC 7B12 2250 MHz
  • 內存:13GB
  • 磁盤:13GB

我嘗試安裝了全新的 nvim,一個簡單又快速的設定。以下是操作步驟:

下載最新版本的 nvim:

wget https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz

解壓縮下載的 tarball 並將 nvim 放置在 /opt 目錄下:

sudo tar -C /opt -xf nvim-linux64.tar.gz

創建符號連結,以使 nvim 可以從您的使用者 bin 目錄訪問:

ln -s /opt/nvim-linux64/bin/nvim ~/bin

欲快速設定 nvim,您可以參考這個資源:https://www.lazyvim.org/installation

沒有留言: