2022年8月11日

slug
2022-08-11
date
Aug 11, 2022
summary
RTAinJapan 夏、石川典行町田散歩配信、NeovimとLSP、Tiktokの猫
status
Published
tags
テック
ゲーム
type
Post
Property
notion image
 
RTAinJapan 夏、が今日から5日間開催される。
きたー!
今回はほんと久しぶりのオフライン開催なので、会場の雰囲気も観ることができる。
オンラインも良かったが、やっぱり拍手などの臨場感は迫力ががある。
 
ずっと石川典行と RTAinJapan を観てたら、夕方になってたので、部屋の掃除をした。
柿ピーを食べた。
葛西臨海公園に行こうかと思ってたけど、暑さと混雑してるというツイートに怯えてやめた。
 
lua を今日も書いていた。
まだ Neovim の設定は終わらない。
でも、いらない設定はいれない方針なので、プラグインも少なめで行く。
 
use({ "wbthomason/packer.nvim" })
use({ "nvim-lua/plenary.nvim" }) -- Common utilities

-- Colorschemes
use({ "EdenEast/nightfox.nvim" }) -- Color scheme

use({ "nvim-lualine/lualine.nvim" }) -- Statusline
use({ "windwp/nvim-autopairs" }) -- Autopairs, integrates with both cmp and treesitter
use({ "kyazdani42/nvim-web-devicons" }) -- File icons
use({ "akinsho/bufferline.nvim" })

-- cmp plugins
use({ "hrsh7th/nvim-cmp" }) -- The completion plugin
use({ "hrsh7th/cmp-buffer" }) -- buffer completions
use({ "hrsh7th/cmp-path" }) -- path completions
use({ "hrsh7th/cmp-cmdline" }) -- cmdline completions
use({ "saadparwaiz1/cmp_luasnip" }) -- snippet completions
use({ "hrsh7th/cmp-nvim-lsp" })
use({ "hrsh7th/cmp-nvim-lua" })
use({ "onsails/lspkind-nvim" })

-- snippets
use({ "L3MON4D3/LuaSnip" }) --snippet engine

-- LSP
use({ "neovim/nvim-lspconfig" }) -- enable LSP
use({ "williamboman/nvim-lsp-installer" }) -- simple to use language server installer
use({ "jose-elias-alvarez/null-ls.nvim" }) -- for formatters and linters
use({ "glepnir/lspsaga.nvim" }) -- LSP UIs

-- Formatter
use({ "MunifTanjim/prettier.nvim" })

-- Telescope
use({ "nvim-telescope/telescope.nvim" })

-- Treesitter
use({ "nvim-treesitter/nvim-treesitter", { run = ":TSUpdate" } })
use({ "nvim-telescope/telescope-file-browser.nvim" })

use({ "windwp/nvim-ts-autotag" })
 
誰得かわからないが、ここに今回のプラグインのラインナップを貼っておく。
LSP のところはかなりすっきりしたが、そもそも Language Server なんてものを意識してるプログラマーは局所的だろうなと思う。
VSCode なんかを使っているとまったく気にしないだろう。
だが、内部では LSP が動いているのだ。
それを Neovim も使っているのだ。
これでいいのだ。
 
たまたまみていた Tiktok で Live ですごくかわいい猫がいたので、普段あまりスクショは撮らないがパシャリ。
この評定はすごくかわいい。

© Yoshiyuki Hisamatsu 2021 - 2022