This commit is contained in:
commit
cf94eeb38c
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
<!-- Any bug report not following this template will be immediately closed. Thanks -->
|
||||
|
||||
## Describe the bug
|
||||
<!-- A clear and concise description of what the bug is. -->
|
||||
|
||||
## To Reproduce
|
||||
<!-- Steps to reproduce the behavior. -->
|
||||
1. ...
|
||||
|
||||
## Desktop
|
||||
<!-- please complete the following information. -->
|
||||
- OS:
|
||||
- Terminal:
|
||||
|
||||
## Neovim Version
|
||||
<!-- Output of running `:version` from inside of neovim. -->
|
||||
|
||||
```
|
||||
```
|
|
@ -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 .
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
kickstart-is kickstart.txt /*kickstart-is*
|
||||
kickstart-is-not kickstart.txt /*kickstart-is-not*
|
||||
kickstart.nvim kickstart.txt /*kickstart.nvim*
|
14
init.lua
14
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', '<leader>m', ':call quickui#menu#open()<CR>', { 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
|
||||
|
|
Loading…
Reference in New Issue