This commit is contained in:
asep komarudin 2023-01-22 19:58:01 +07:00
parent c4fe7d778f
commit 55944e0859
5 changed files with 15 additions and 12 deletions

View file

@ -52,7 +52,7 @@ visudo
2. Install Neovim
```
```bash
sudo apt-get install wget
mkdir download
cd download
@ -63,13 +63,13 @@ nvim --version
3. Check G++
```
```bash
g++ --version
```
4. Install NodeJS
```
```bash
sudo apt-get install curl
sudo apt install build-essential libssl-dev
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
@ -81,14 +81,14 @@ npm --version
5. Install unzip, ripgrep
```
```bash
sudo apt-get install unzip
sudo apt-get install ripgrep
```
6. Install lazygit
```
```bash
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v*([^"]+)".*/\1/')
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz"
sudo tar xf lazygit.tar.gz -C /usr/local/bin lazygit
@ -97,14 +97,14 @@ lazygit --version
7. Install Git
```
```bash
sudo apt-get install git
git --version
```
8. Clone Config
```
```bash
git clone https://github.com/pojokcodeid/nvim-lazy.git ~/.config/nvim
```
@ -125,7 +125,7 @@ git clone https://github.com/pojokcodeid/nvim-lazy.git ~/.config/nvim
- Tambahkan Pada Bagian berikut
```
```lua
ensure_installed = {
"bash",
"c",
@ -151,7 +151,7 @@ ensure_installed = {
- Edit Bagian ini
```
```lua
dashboard.section.header.val = {
[[ _ _ _ ]],
[[ (_) | | | | ]],

View file

@ -32,6 +32,7 @@
"mini.pairs": { "branch": "main", "commit": "fec9aba50912d8c3d92d07d6a77952de84f8d7ad" },
"mini.surround": { "branch": "main", "commit": "df41f1c009afbb3eef39d979977fb14404576f9b" },
"neoscroll.nvim": { "branch": "master", "commit": "d7601c26c8a183fa8994ed339e70c2d841253e93" },
"nord-vim": { "branch": "main", "commit": "2272dcf8ef7d6c1f13a5a1a86a23906dc0c6b39e" },
"nui.nvim": { "branch": "main", "commit": "b99e6cb13dc51768abc1c4c8585045a0c0459ef1" },
"null-ls.nvim": { "branch": "main", "commit": "c0c19f32b614b3921e17886c541c13a72748d450" },
"nvim-autopairs": { "branch": "master", "commit": "4fc96c8f3df89b6d23e5092d31c866c53a346347" },

View file

@ -22,6 +22,7 @@ return {
require("onedark").load()
end,
},
{ "arcticicestudio/nord-vim" },
-- {
-- "ellisonleao/gruvbox.nvim",
-- init = function()

View file

@ -1,10 +1,11 @@
-- local colorscheme = "tokyonight-night"
local colorscheme = "tokyonight-night"
-- local colorscheme = "gruvbox"
-- local colorscheme = "sonokai"
-- local colorscheme = "nordfox"
-- local colorscheme = "material"
-- local colorscheme = "onedark"
local colorscheme = "lunar"
-- local colorscheme = "lunar"
-- local colorscheme = "nord"
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then

View file

@ -6,7 +6,7 @@ end
local lspconfig = require("lspconfig")
-- local servers = { "jsonls", "sumneko_lua","html","cssls","tsserver"}
local servers = { "jdtls" }
local servers = { "jdtls", "dockerls" }
lsp_installer.setup({
ensure_installed = servers,