Removed Tabnine because of resource usage, addded journal plugin instead
This commit is contained in:
parent
1d7c562add
commit
def3c6b531
|
@ -132,19 +132,3 @@ cmp.setup.cmdline(":", {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Tabnine configuration
|
|
||||||
local tabnine = require("cmp_tabnine.config")
|
|
||||||
tabnine:setup({
|
|
||||||
max_lines = 1000,
|
|
||||||
max_num_results = 10,
|
|
||||||
sort = true,
|
|
||||||
run_on_every_keystroke = true,
|
|
||||||
snippet_placeholder = "..",
|
|
||||||
ignored_file_types = {
|
|
||||||
-- default is not to ignore
|
|
||||||
-- uncomment to ignore in lua:
|
|
||||||
-- lua = true
|
|
||||||
},
|
|
||||||
show_prediction_strength = true,
|
|
||||||
min_percent = 40,
|
|
||||||
})
|
|
||||||
|
|
|
@ -89,7 +89,7 @@ require("lspconfig").verible.setup({
|
||||||
vim.keymap.set("n", "<C-t>", ":FloatermNew --height=0.9 --width=0.9 --wintype=float --name=terminal <CR>")
|
vim.keymap.set("n", "<C-t>", ":FloatermNew --height=0.9 --width=0.9 --wintype=float --name=terminal <CR>")
|
||||||
|
|
||||||
-- Set default colorscheme
|
-- Set default colorscheme
|
||||||
vim.cmd("colo tokyonight-moon")
|
vim.cmd("colo vim-monokai-tasty")
|
||||||
|
|
||||||
-- Formatter configuration
|
-- Formatter configuration
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
|
|
|
@ -64,11 +64,12 @@ return {
|
||||||
"mihaifm/bufstop",
|
"mihaifm/bufstop",
|
||||||
"https://git.nickr.eu/yannickreiss/nvim-sourcer.git",
|
"https://git.nickr.eu/yannickreiss/nvim-sourcer.git",
|
||||||
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
||||||
{
|
|
||||||
"tzachar/cmp-tabnine",
|
|
||||||
build = "./install.sh",
|
|
||||||
dependencies = "hrsh7th/nvim-cmp",
|
|
||||||
},
|
|
||||||
"jaredgorski/spacecamp",
|
"jaredgorski/spacecamp",
|
||||||
"voldikss/vim-floaterm",
|
"voldikss/vim-floaterm",
|
||||||
|
{
|
||||||
|
"jakobkhansen/journal.nvim",
|
||||||
|
config = function()
|
||||||
|
require("journal").setup()
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue