diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..2ad4d31d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,28 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + + + +## Describe the bug + + +## To Reproduce + +1. ... + +## Desktop + +- OS: +- Terminal: + +## Neovim Version + + +``` +``` diff --git a/.github/workflows/stylua.yml b/.github/workflows/stylua.yml new file mode 100644 index 00000000..e189fe01 --- /dev/null +++ b/.github/workflows/stylua.yml @@ -0,0 +1,18 @@ +# Check Lua Formatting +name: Check Lua Formatting +on: pull_request + +jobs: + stylua-check: + name: Stylua Check + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v2 + - name: Stylua Check + uses: JohnnyMorganz/stylua-action@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + version: latest + args: --check . + diff --git a/doc/tags b/doc/tags new file mode 100644 index 00000000..687ae772 --- /dev/null +++ b/doc/tags @@ -0,0 +1,3 @@ +kickstart-is kickstart.txt /*kickstart-is* +kickstart-is-not kickstart.txt /*kickstart-is-not* +kickstart.nvim kickstart.txt /*kickstart.nvim* diff --git a/init.lua b/init.lua index 7a38e4bb..9fe103db 100644 --- a/init.lua +++ b/init.lua @@ -230,7 +230,11 @@ require('lazy').setup({ branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim', +<<<<<<< HEAD -- Fuzzy Finder Algorithm which requires local dependencies to be lbuilt. +======= + -- Fuzzy Finder Algorithm which requires local dependencies to be built. +>>>>>>> origin/master -- Only load if `make` is available. Make sure you have the system -- requirements installed. { @@ -267,9 +271,12 @@ require('lazy').setup({ -- -- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins -- { import = 'custom.plugins' }, +<<<<<<< HEAD { 'skywind3000/vim-quickui', } +======= +>>>>>>> origin/master }, {}) -- [[ Setting options ]] @@ -277,7 +284,11 @@ require('lazy').setup({ -- NOTE: You can change these options as you wish! -- Set highlight on search +<<<<<<< HEAD vim.o.hlsearch = true +======= +vim.o.hlsearch = false +>>>>>>> origin/master -- Make line numbers default vim.wo.number = true @@ -660,6 +671,7 @@ cmp.setup { }, } +<<<<<<< HEAD vim.cmd [[ call quickui#menu#install('&MyMenu', [ \ ['&MyEntry', 'echo "Hello, world!"'], @@ -669,5 +681,7 @@ vim.cmd [[ vim.api.nvim_set_keymap('n', 'm', ':call quickui#menu#open()', { noremap = true }) vim.g.quickui_color_scheme = 'onedark' +======= +>>>>>>> origin/master -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et