chore: ignore java class
parent
f75123f43d
commit
1cc9a237f2
|
@ -21,5 +21,11 @@ mock
|
||||||
# Python
|
# Python
|
||||||
venv
|
venv
|
||||||
|
|
||||||
|
# Java
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Wild chaos
|
||||||
|
*.out
|
||||||
|
|
||||||
# Personal
|
# Personal
|
||||||
Homework
|
Homework
|
||||||
|
|
|
@ -74,15 +74,18 @@ vim.g.go_doc_popup_window = 1
|
||||||
-- Use plugin copilot
|
-- Use plugin copilot
|
||||||
vim.g.copilot_filetypes = {
|
vim.g.copilot_filetypes = {
|
||||||
["*"] = false,
|
["*"] = false,
|
||||||
|
c = true,
|
||||||
|
cpp = true,
|
||||||
go = true,
|
go = true,
|
||||||
|
java = true,
|
||||||
json = true,
|
json = true,
|
||||||
lua = true,
|
lua = true,
|
||||||
make = true,
|
make = true,
|
||||||
|
markdown = true,
|
||||||
proto = true,
|
proto = true,
|
||||||
python = true,
|
python = true,
|
||||||
toml = true,
|
toml = true,
|
||||||
yaml = true,
|
yaml = true,
|
||||||
markdown = true,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
-- https://github.com/wbthomason/packer.nvim
|
-- https://github.com/wbthomason/packer.nvim
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
port install \
|
port install \
|
||||||
git neovim \
|
git neovim \
|
||||||
fd bat ripgrep difftastic git-delta exa zellij fdupes rclone restic tealdeer task gdu duf nnn imagemagick ffmpegthumbnailer \
|
fd bat ripgrep difftastic git-delta exa zellij fdupes rclone restic tealdeer task gdu duf \
|
||||||
android-platform-tools scrcpy
|
nnn imagemagick ffmpegthumbnailer asciinema agg android-platform-tools scrcpy
|
||||||
|
|
Loading…
Reference in New Issue