KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
blackjack.nvim
★ 73
Open GitHub ↗
Classic Black Jack game in Neovim
Download README (.md)
Explore Similar Repositories
my-react
:
手写 React 18 源码,带你从零实现 React 的核心功能,构建自己的 React 库。
Physics-aware-Multiplex-GNN
:
Source code for "A universal framework for accurate and efficient geometric deep learning of molecular systems" (Nature Scientific Reports)
Stable-SAM
:
No description available.
LLM-Text-Detect
:
No description available.
ESP32_USB_Stream
:
Arduino library of driving USB stream for the ESP32-S2 and ESP32-S3
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
blackjack.nvim
?
Download (.md)
# Blackjack.nvim Blackjack.nvim is a neovim plugin that implements a classic BlackJack game in neovim. Using the "mini" style of cards: https://user-images.githubusercontent.com/3660978/221558874-d2ac9f49-f076-47f7-8521-de9e45f042cb.mov Using the "large" style of cards: https://user-images.githubusercontent.com/3660978/221390688-2c53d1e3-74b5-4f00-8f30-30a9388621d1.mov --- ## Requirements - [Neovim](https://github.com/neovim/neovim) >= 0.5.0 ## Installation ### Using [Packer](https://github.com/wbthomason/packer.nvim) ```lua use { 'alanfortlink/blackjack.nvim', requires = {'nvim-lua/plenary.nvim'}, } ``` ### Using [vim-plug](https://github.com/junegunn/vim-plug) ```lua Plug 'nvim-lua/plenary.nvim' Plug 'alanfortlink/blackjack.nvim' ``` ### Setup (Optional) ```lua require("blackjack").setup({ card_style = "mini", -- Can be "mini" or "large". suit_style = "black", -- Can be "black" or "white". scores_path = "/home/foo/blackjack_scores.json", -- Default location to store the scores.json file. keybindings = { ["next"] = "j", ["finish"] = "k", ["quit"] = "q", }, }) ``` ## Usage To start a new game: ```vim :BlackJackNewGame ``` To quit the game you can press `q` or: ```vim :BlackJackQuit ``` To reset the scores: ```vim :BlackJackResetScores ``` Press `j` and `k` to play the game and `q` to quit.