in progress
This commit is contained in:
@ -17,8 +17,6 @@ package.path = package.path .. vim.fn.expand(";$HOME/.vim/lua/?.lua")
|
||||
vim.g.mapleader = "," -- Make sure to set `mapleader` before lazy so your mappings are correct
|
||||
vim.g.windowswap_map_keys = 0
|
||||
|
||||
-- require('lspconfig')
|
||||
|
||||
require("lazy").setup({
|
||||
"folke/which-key.nvim",
|
||||
{ "folke/neoconf.nvim", cmd = "Neoconf" },
|
||||
@ -30,6 +28,7 @@ require("lazy").setup({
|
||||
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
lazy = false,
|
||||
build = ":TSUpdate",
|
||||
config = function() require("config.nvim-treesitter") end
|
||||
},
|
||||
@ -85,13 +84,14 @@ require("lazy").setup({
|
||||
'ray-x/cmp-treesitter',
|
||||
},
|
||||
event = 'InsertEnter',
|
||||
lazy = false,
|
||||
config = function() require("config.lsp") end,
|
||||
},
|
||||
|
||||
{
|
||||
"tzachar/cmp-tabnine", build = "./install.sh",
|
||||
event = 'InsertEnter',
|
||||
cond = not use_google(),
|
||||
enabled = not use_google(),
|
||||
},
|
||||
|
||||
{ 'ErichDonGubler/lsp_lines.nvim', config = function() require("lsp_lines").setup() end },
|
||||
@ -294,7 +294,7 @@ require("lazy").setup({
|
||||
|
||||
-- mine
|
||||
{
|
||||
'squk/java-syntax.vim', ft='java'
|
||||
'squk/java-syntax.vim', ft='java', lazy=false
|
||||
},
|
||||
|
||||
{
|
||||
@ -384,17 +384,14 @@ require("lazy").setup({
|
||||
end,
|
||||
},
|
||||
},
|
||||
{
|
||||
defaults = {
|
||||
-- lazy = true, -- should plugins be lazy-loaded?
|
||||
}})
|
||||
{ defaults = {lazy = false} })
|
||||
|
||||
-- CiderLSP
|
||||
vim.opt.completeopt = { "menu", "menuone", "noselect" }
|
||||
-- Don't show the dumb matching stuff
|
||||
vim.opt.shortmess:append("c")
|
||||
-- CiderLSP
|
||||
vim.opt.completeopt = { "menu", "menuone", "noselect" }
|
||||
-- Don't show the dumb matching stuff
|
||||
vim.opt.shortmess:append("c")
|
||||
|
||||
vim.opt.spell = true
|
||||
vim.opt.spelllang = { 'en_us' }
|
||||
vim.opt.spell = true
|
||||
vim.opt.spelllang = { 'en_us' }
|
||||
|
||||
require("config.imp")
|
||||
require("config.imp")
|
||||
|
@ -7,7 +7,8 @@ let g:signify_skip_filename_pattern = ['\.pipertmp.*']
|
||||
|
||||
Glug alert
|
||||
Glug csearch
|
||||
Glug codefmt ktfmt_executable=`["/google/bin/releases/kotlin-google-eng/ktfmt/ktfmt_deploy.jar", "--google-style"]`
|
||||
" Glug codefmt ktfmt_executable=`["/google/bin/releases/kotlin-google-eng/ktfmt/ktfmt_deploy.jar", "--google-style"]`
|
||||
Glug codefmt
|
||||
Glug codefmt-google
|
||||
Glug languages
|
||||
" applies google coding style settings to files whitelisted as google code. probably also want
|
||||
|
Reference in New Issue
Block a user