mirror of https://github.com/LazyVim/starter
added some personal options and a plugin for kitty config file syntax highlighting
parent
75625b29e8
commit
35537dfa7b
|
@ -6,3 +6,4 @@ debug
|
|||
foo.*
|
||||
*.log
|
||||
data
|
||||
lazy-lock.json
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"extras": [
|
||||
"lazyvim.plugins.extras.coding.tabnine",
|
||||
"lazyvim.plugins.extras.coding.yanky",
|
||||
"lazyvim.plugins.extras.dap.core",
|
||||
"lazyvim.plugins.extras.dap.nlua",
|
||||
"lazyvim.plugins.extras.editor.trouble-v3",
|
||||
"lazyvim.plugins.extras.formatting.black",
|
||||
"lazyvim.plugins.extras.formatting.prettier",
|
||||
"lazyvim.plugins.extras.lang.go",
|
||||
"lazyvim.plugins.extras.lang.json",
|
||||
"lazyvim.plugins.extras.lang.markdown",
|
||||
"lazyvim.plugins.extras.lang.python",
|
||||
"lazyvim.plugins.extras.lang.ruby",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.typescript",
|
||||
"lazyvim.plugins.extras.lang.yaml",
|
||||
"lazyvim.plugins.extras.lazyrc",
|
||||
"lazyvim.plugins.extras.linting.eslint",
|
||||
"lazyvim.plugins.extras.lsp.none-ls",
|
||||
"lazyvim.plugins.extras.test.core"
|
||||
],
|
||||
"news": {
|
||||
"NEWS.md": "3314"
|
||||
},
|
||||
"version": 3
|
||||
}
|
|
@ -1,3 +1,9 @@
|
|||
-- Options are automatically loaded before lazy.nvim startup
|
||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||
-- Add any additional options here
|
||||
vim.opt.wrap = true
|
||||
vim.opt.linebreak = true
|
||||
vim.opt.breakindent = true
|
||||
vim.opt.breakat = " ^I!@*-+;:,./?"
|
||||
vim.opt.showbreak = "++"
|
||||
vim.g.ruby_host_prog = "/Users/wylde/.gem/ruby/3.3.0/bin/neovim-ruby-host"
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
"fladson/vim-kitty",
|
||||
}
|
Loading…
Reference in New Issue