Compare commits

...

10 Commits
cicd ... main

Author SHA1 Message Date
caeeb528b3 Remove notice from GitHub repo's README
All checks were successful
Luacheck / Luacheck (push) Successful in 8s
StyLua / StyLuacheck (push) Successful in 13s
2024-01-19 02:06:55 +01:00
Jirka
6fd3d328a5
fix: Remove obsolete instructions
All checks were successful
Luacheck / Luacheck (push) Successful in 7s
StyLua / StyLuacheck (push) Successful in 10s
2024-01-14 14:05:32 +01:00
5e4b8d8b9b
Archive
Signed-off-by: Jiří Štefka <jiri@stefka.eu>
2024-01-14 14:01:25 +01:00
267a6f1929
feat!: move Tagbar and Trouble to LSP menu from Find menu
All checks were successful
Luacheck / Luacheck (push) Successful in 7s
StyLua / StyLuacheck (push) Successful in 11s
2023-12-03 02:07:54 +01:00
8eaf4288da
fix(issue_templates): identation
All checks were successful
Luacheck / Luacheck (push) Successful in 6s
StyLua / StyLuacheck (push) Successful in 7s
2023-10-04 10:27:39 +02:00
2dc17c2851
feat(issue_templates): add basic issue templates
All checks were successful
Luacheck / Luacheck (push) Successful in 7s
StyLua / StyLuacheck (push) Successful in 8s
2023-10-04 10:25:57 +02:00
ebe528abfa
fix(style/format): further code formating
All checks were successful
Luacheck / Luacheck (push) Successful in 7s
StyLua / StyLuacheck (push) Successful in 9s
2023-10-04 09:20:52 +02:00
9706834ddb
fix(style/format): formated the code
Some checks failed
Luacheck / Luacheck (push) Failing after 7s
StyLua / StyLuacheck (push) Successful in 10s
2023-10-04 09:14:10 +02:00
cb397b7f92
feat(luacheck): add .luacheckrc
Some checks failed
Luacheck / Luacheck (push) Failing after 7s
StyLua / StyLuacheck (push) Successful in 8s
to add variables that are defined in AstroNvim
2023-10-04 09:09:56 +02:00
936f405764 fix(cicd): manually setup actions as GH actions don't work on this image (#2)
Some checks failed
Luacheck / Luacheck (push) Failing after 7s
StyLua / StyLuacheck (push) Successful in 7s
Reviewed-on: #2
2023-10-04 08:57:36 +02:00
7 changed files with 214 additions and 55 deletions

@ -0,0 +1,111 @@
name: Issue report
description: Report any errors, bugs, or unexpected behaviors related to presence.nvim
title: "[Bug]: "
labels: [bug]
assignees:
- jiriks74
body:
- type: markdown
attributes:
value: |
Before reporting, please search [existing issues](https://gitea.stefka.eu/jiriks74/astronvim_config/issues/) and make sure that you are on the latest commit
- type: dropdown
attributes:
label: "Are you on the latest version of the commit?"
description: "If no, please backup your current config and update."
options:
- "Yes"
- "No"
validations:
required: true
- type: input
attributes:
label: "Which commit are you on?"
description: "To thet the commit hash run `git rev-parse --short HEAD` in the config directory (`~/.config/nvim/lua/user`)"
validations:
required: true
- type: dropdown
attributes:
label: "Have you modified the config?"
description: "If so, backup your current config and try the default one before reporting."
options:
- "Yes"
- "No"
validations:
required: true
- type: textarea
attributes:
label: "Description"
description: "A short summary of the error, bug, or unexpected behavior you're facing."
validations:
required: true
- type: textarea
attributes:
label: "Neovim version"
description: "Output of `nvim --version`"
render: markdown
placeholder: |
NVIM: v0.6.0-dev+209-g0603eba6e
Build type: Release
LuaJIT: 2.1.0-beta3
value: |
NVIM:
Build type:
LuaJIT:
validations:
required: true
- type: input
attributes:
label: "OS information"
placeholder: "Ubuntu 22.04"
validations:
required: true
- type: textarea
attributes:
label: "Steps to reproduce"
description: "Steps to reproduce the issue with your config(s) if applicable."
placeholder: |
1. Setup presence.nvim with `require("presence"):setup({...})`
2. Run Neovim with `nvim test.txt`
3. ...
validations:
required: true
- type: textarea
attributes:
label: "Logs"
description: "The full list of `:messages` from one or more `nvim` instances.\nPlease insert the logs into code blocks."
placeholder: |
<details>
```
[presence.nvim] Using runtime path: /run/user/1000
[presence.nvim] Using Discord IPC socket path: /run/user/1000/discord-ipc-0
[presence.nvim] Checking Discord IPC socket at /run/user/1000/discord-ipc-0...
```
</details>
value: |
<details>
```
```
</details>
validations:
required: true
- type: textarea
attributes:
label: "Aditional info"
description: "If you'd like to add anything else put it here."
validations:
required: false

@ -0,0 +1,34 @@
name: Feature request
description: Report any errors, bugs, or unexpected behaviors related to presence.nvim
title: "[FEAT]: "
labels: [enhancement]
assignees:
- jiriks74
body:
- type: textarea
attributes:
label: Is your feature request related to a problem?
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when...
validations:
required: true
- type: textarea
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
validations:
required: false
- type: textarea
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
validations:
required: false

@ -2,9 +2,15 @@ name: Luacheck
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
Luacheck: Luacheck:
runs-on: ubuntu-full-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Luacheck
run: |
apt update && apt install lua-check -y
- name: Luacheck linter - name: Luacheck linter
uses: lunarmodules/luacheck@v1 run: |
luacheck .

@ -2,14 +2,11 @@ name: StyLua
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
StyLuacheck: StyLuacheck:
runs-on: ubuntu-full-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: StyLua check - name: StyLua check
uses: JohnnyMorganz/stylua-action@v3 run: |
with: npx @johnnymorganz/stylua-bin .
token: ${{ secrets.GH_TOKEN }}
version: v0.18.2 # NOTE: we recommend pinning to a specific version in case of formatting changes
# CLI arguments
args: --check .

9
.luacheckrc Normal file

@ -0,0 +1,9 @@
std = {
globals = {
"vim",
"require",
},
read_globals = {
"fallback",
},
}

@ -15,39 +15,23 @@
```bash ```bash
git clone https://github.com/AstroNvim/AstroNvim ~/.config/nvim git clone https://github.com/AstroNvim/AstroNvim ~/.config/nvim
nvim +PackerSync
``` ```
- Clone my config into `~/.config/nvim/lua/user` - Clone my config into `~/.config/nvim/lua/user`
- For NeoVim >= 8.0
```bash ```bash
git clone https://github.com/jiriks74/astronvim_config ~/.config/nvim/lua/user git clone https://github.com/jiriks74/astronvim_config ~/.config/nvim/lua/user
``` ```
- For NeoVim < 8.0 use `neovim7.2` branch
```bash
git clone -b neovim7.2 https://github.com/jiriks74/astronvim_config ~/.config/nvim/lua/user
```
- Open nvim and run `:PackerSync`
```bash
nvim +PackerSync
```
## Useful info ## Useful info
- Folding with treesitter - Folding with treesitter
- To get folding for your language, you need to run - To get folding for your language, you need to run
`:TSInstall <language>` (eg. `TSInstall cpp` to get C++ folding) `:TSInstall <language>` (eg. `TSInstall cpp` to get C++ folding)
- Install language servers - Install language servers
- Use `Space+p+I` keybind to open install menu. - Use `Space+p+m` keybind to open install menu.
- To install package under the cursor, press `i` - To install package under the cursor, press `i`
- To uninstall package under the cursor press `X` - To uninstall package under the cursor press `X`
- Debugging
- See `vimspector` under [`Extra plugin included`](#extra-plugins-included)
- LaTeX - LaTeX
- To use `vimtex` plugin, you need to have LaTeX installed - To use `vimtex` plugin, you need to have LaTeX installed
- [`texlive-most`](https://wiki.archlinux.org/title/TeX_Live#Installation) package on ArchLinux - [`texlive-most`](https://wiki.archlinux.org/title/TeX_Live#Installation) package on ArchLinux

@ -48,13 +48,20 @@ local config = {
wrap = false, -- sets vim.opt.wrap wrap = false, -- sets vim.opt.wrap
}, },
g = { g = {
mapleader = " ", -- sets vim.g.mapleader -- sets vim.g.mapleader
autoformat_enabled = true, -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled) mapleader = " ",
cmp_enabled = true, -- enable completion at start -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled)
autopairs_enabled = true, -- enable autopairs at start autoformat_enabled = true,
diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on) -- enable completion at start
icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing) cmp_enabled = true,
ui_notifications_enabled = true, -- disable notifications when toggling UI elements -- enable autopairs at start
autopairs_enabled = true,
-- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on)
diagnostics_mode = 3,
-- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
icons_enabled = true,
-- disable notifications when toggling UI elements
ui_notifications_enabled = true,
-- Taglist -- Taglist
Tlist_Use_Right_Window = 1, Tlist_Use_Right_Window = 1,
Tlist_GainFocus_On_ToggleOpen = 1, Tlist_GainFocus_On_ToggleOpen = 1,
@ -229,16 +236,16 @@ local config = {
["<leader>xs"] = { "<cmd>VimtexToggleMain<cr>", desc = "Set current file as 'current project'" }, ["<leader>xs"] = { "<cmd>VimtexToggleMain<cr>", desc = "Set current file as 'current project'" },
["<leader>xa"] = { "<cmd>VimtexContextMenu<cr>", desc = "Show context menu" }, ["<leader>xa"] = { "<cmd>VimtexContextMenu<cr>", desc = "Show context menu" },
-- Trouble, Taglist -- Trouble, Taglist
["<leader>ft"] = { desc = false, name = "Trouble, Tagbar" }, ["<leader>lt"] = { desc = false, name = "Trouble, Tagbar" },
-- Taglist -- Taglist
["<leader>ftT"] = { "<cmd>TlistToggle<cr>", desc = "Tagbar toggle" }, ["<leader>ltT"] = { "<cmd>TlistToggle<cr>", desc = "Tagbar toggle" },
-- Trouble -- Trouble
["<leader>ftx"] = { "<cmd>TroubleToggle<cr>", desc = "Toggle Trouble" }, ["<leader>ltx"] = { "<cmd>TroubleToggle<cr>", desc = "Toggle Trouble" },
["<leader>ftw"] = { "<cmd>TroubleToggle workspace_diagnostics<cr>", desc = "Workspace diagnostics" }, ["<leader>ltw"] = { "<cmd>TroubleToggle workspace_diagnostics<cr>", desc = "Workspace diagnostics" },
["<leader>ftd"] = { "<cmd>TroubleToggle document_diagnostics<cr>", desc = "Document diagnostics" }, ["<leader>ltd"] = { "<cmd>TroubleToggle document_diagnostics<cr>", desc = "Document diagnostics" },
["<leader>ftq"] = { "<cmd>TroubleToggle quickfix<cr>", desc = "Quickfix" }, ["<leader>ltq"] = { "<cmd>TroubleToggle quickfix<cr>", desc = "Quickfix" },
["<leader>ftl"] = { "<cmd>TroubleToggle loclist<cr>", desc = "Loc List" }, ["<leader>ltl"] = { "<cmd>TroubleToggle loclist<cr>", desc = "Loc List" },
["<leader>ftR"] = { "<cmd>TroubleToggle lsp_references<cr>", desc = "Lsp references" }, ["<leader>ltR"] = { "<cmd>TroubleToggle lsp_references<cr>", desc = "Lsp references" },
-- ["<leader>ftt"] = { "<cmd>TodoTrouble<cr>", desc = "Todo Trouble" }, -- ["<leader>ftt"] = { "<cmd>TodoTrouble<cr>", desc = "Todo Trouble" },
-- --
-- Autosave -- Autosave
@ -286,7 +293,8 @@ local config = {
-- { -- {
-- "L3MON4D3/LuaSnip", -- "L3MON4D3/LuaSnip",
-- config = function(plugin, opts) -- config = function(plugin, opts)
-- require "plugins.configs.luasnip"(plugin, opts) -- include the default astronvim config that calls the setup call -- -- include the default astronvim config that calls the setup call
-- require "plugins.configs.luasnip"(plugin, opts)
-- -- add more custom luasnip configuration such as filetype extend or custom snippets -- -- add more custom luasnip configuration such as filetype extend or custom snippets
-- local luasnip = require "luasnip" -- local luasnip = require "luasnip"
-- luasnip.filetype_extend("javascript", { "javascriptreact" }) -- luasnip.filetype_extend("javascript", { "javascriptreact" })
@ -295,7 +303,8 @@ local config = {
-- { -- {
-- "windwp/nvim-autopairs", -- "windwp/nvim-autopairs",
-- config = function(plugin, opts) -- config = function(plugin, opts)
-- require "plugins.configs.nvim-autopairs"(plugin, opts) -- include the default astronvim config that calls the setup call -- -- include the default astronvim config that calls the setup call
-- require "plugins.configs.nvim-autopairs"(plugin, opts)
-- -- add more custom autopairs configuration such as custom rules -- -- add more custom autopairs configuration such as custom rules
-- local npairs = require "nvim-autopairs" -- local npairs = require "nvim-autopairs"
-- local Rule = require "nvim-autopairs.rule" -- local Rule = require "nvim-autopairs.rule"
@ -470,16 +479,27 @@ local config = {
-- * keyword: highlights of the keyword -- * keyword: highlights of the keyword
-- * after: highlights after the keyword (todo text) -- * after: highlights after the keyword (todo text)
highlight = { highlight = {
multiline = true, -- enable multine todo comments -- enable multine todo comments
multiline_pattern = "^.", -- lua pattern to match the next multiline from the start of the matched keyword multiline = true,
multiline_context = 10, -- extra lines that will be re-evaluated when changing a line -- lua pattern to match the next multiline from the start of the matched keyword
before = "", -- "fg" or "bg" or empty multiline_pattern = "^.",
keyword = "wide", -- "fg", "bg", "wide", "wide_bg", "wide_fg" or empty. (wide and wide_bg is the same as bg, but will also highlight surrounding characters, wide_fg acts accordingly but with fg) -- extra lines that will be re-evaluated when changing a line
after = "fg", -- "fg" or "bg" or empty multiline_context = 10,
pattern = [[.*<(KEYWORDS)\s*:]], -- pattern or table of patterns, used for highlighting (vim regex) -- "fg" or "bg" or empty
comments_only = true, -- uses treesitter to match keywords in comments only before = "",
max_line_len = 400, -- ignore lines longer than this -- "fg", "bg", "wide", "wide_bg", "wide_fg" or empty. (wide and wide_bg is the same as bg,
exclude = {}, -- list of file types to exclude highlighting -- but will also highlight surrounding characters, wide_fg acts accordingly but with fg)
keyword = "wide",
-- "fg" or "bg" or empty
after = "fg",
-- pattern or table of patterns, used for highlighting (vim regex)
pattern = [[.*<(KEYWORDS)\s*:]],
-- uses treesitter to match keywords in comments only
comments_only = true,
-- ignore lines longer than this
max_line_len = 400,
-- list of file types to exclude highlighting
exclude = {},
}, },
-- list of named colors where we try to extract the guifg from the -- list of named colors where we try to extract the guifg from the
-- list of highlight groups or use the hex color if hl not found as a fallback -- list of highlight groups or use the hex color if hl not found as a fallback
@ -555,8 +575,6 @@ local config = {
}, },
{ "stevearc/dressing.nvim" }, { "stevearc/dressing.nvim" },
-- Live server -- Live server
{ {
"aurum77/live-server.nvim", "aurum77/live-server.nvim",