Compare commits
2 Commits
ecda6e9704
...
e90bc1bb5f
| Author | SHA1 | Date |
|---|---|---|
|
|
e90bc1bb5f | |
|
|
78566240e0 |
|
|
@ -0,0 +1,2 @@
|
||||||
|
require('conftool').set({'tabstop', 2}, {'shiftwidth', 2}, 'expandtab')
|
||||||
|
vim.cmd 'IndentGuidesDisable'
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
require('conftool').set({'tabstop', 2},{'shiftwidth', 2})
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
require('conftool').set({'tabstop', 2},{'shiftwidth', 2})
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
local ct = require('conftool')
|
||||||
|
|
||||||
|
ct.set({'tabstop', 4}, {'shiftwidth', 4}, 'expandtab')
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
javascript.lua
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
typescript.lua
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
javascript.lua
|
||||||
|
|
@ -9,9 +9,9 @@ local defs = require('defaults')
|
||||||
ct.augroup('templates',
|
ct.augroup('templates',
|
||||||
{'BufNewFile', '*.c', '0r', defs.template_dir .. '/c_stdio.c'},
|
{'BufNewFile', '*.c', '0r', defs.template_dir .. '/c_stdio.c'},
|
||||||
{'BufNewFile', '*.cpp', '0r', defs.template_dir .. '/cpp_iostream.cpp'},
|
{'BufNewFile', '*.cpp', '0r', defs.template_dir .. '/cpp_iostream.cpp'},
|
||||||
|
{'BufNewFile', '*.desktop', '0r', defs.template_dir .. '/desktop'},
|
||||||
{'BufNewFile', '*.go', '0r', defs.template_dir .. '/go.go'},
|
{'BufNewFile', '*.go', '0r', defs.template_dir .. '/go.go'},
|
||||||
{'BufNewFile', '*.html', '0r', defs.template_dir .. '/html.html'},
|
{'BufNewFile', '*.html', '0r', defs.template_dir .. '/html-index.html'},
|
||||||
{'BufNewFile', '*.html', '0r', defs.template_dir .. '/html.html'},
|
|
||||||
{'BufNewFile', '*.py', '0r', defs.template_dir .. '/py.py'},
|
{'BufNewFile', '*.py', '0r', defs.template_dir .. '/py.py'},
|
||||||
{'BufNewFile', '*.sh', '0r', defs.template_dir .. '/sh.sh'}
|
{'BufNewFile', '*.sh', '0r', defs.template_dir .. '/sh.sh'}
|
||||||
)
|
)
|
||||||
|
|
@ -19,16 +19,19 @@ ct.augroup('templates',
|
||||||
--
|
--
|
||||||
-- FileType based Settings
|
-- FileType based Settings
|
||||||
--
|
--
|
||||||
ct.augroup('filetypeSettings',
|
|
||||||
{'FileType', 'python', 'setlocal', 'tabstop=4 shiftwidth=4 expandtab'},
|
-- moved to after/ftplugin
|
||||||
{'FileType', 'html', 'setlocal', 'tabstop=2 shiftwidth=2'},
|
-- ct.augroup('filetypeSettings',
|
||||||
{'FileType', 'javascript', 'setlocal', 'tabstop=2 shiftwidth=2'},
|
-- {'FileType', 'python', 'setlocal', 'tabstop=4 shiftwidth=4 expandtab'},
|
||||||
{'FileType', 'typescript', 'setlocal', 'tabstop=2 shiftwidth=2'},
|
-- {'FileType', 'dart', 'setlocal', 'tabstop=2 shiftwidth=2 expandtab'},
|
||||||
{'FileType', 'typescriptreact','setlocal', 'tabstop=2 shiftwidth=2'},
|
-- {'FileType', 'html', 'setlocal', 'tabstop=2 shiftwidth=2'},
|
||||||
{'FileType', 'vue', 'setlocal', 'tabstop=2 shiftwidth=2'}
|
-- {'FileType', 'javascript', 'setlocal', 'tabstop=2 shiftwidth=2'},
|
||||||
)
|
-- {'FileType', 'typescript', 'setlocal', 'tabstop=2 shiftwidth=2'},
|
||||||
|
-- {'FileType', 'typescriptreact','setlocal', 'tabstop=2 shiftwidth=2'},
|
||||||
|
-- {'FileType', 'vue', 'setlocal', 'tabstop=2 shiftwidth=2'}
|
||||||
|
-- )
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Misc.
|
-- Misc.
|
||||||
--
|
--
|
||||||
vim.cmd 'autocmd BufWritePost *.go,*.py,*.js,*.ts,*tsx,*.tex LspFormat' -- run lspformat when saving in go
|
vim.cmd 'autocmd BufWritePost *.go,*.py,*.js,*.ts,*tsx,*.tex LspFormat' -- run lspformat when saving
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ local ct = require('conftool')
|
||||||
--
|
--
|
||||||
-- Encoding
|
-- Encoding
|
||||||
--
|
--
|
||||||
ct.set({'encoding', 'utf-8'}, {'fileencoding', 'utf-8'})
|
-- ct.set({'encoding', 'utf-8'}, {'fileencoding', 'utf-8'})
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Search
|
-- Search
|
||||||
|
|
@ -34,7 +34,7 @@ ct.set({'spellsuggest', {'best', 5}})
|
||||||
vim.g.netrw_liststyle = 3 -- tree style display
|
vim.g.netrw_liststyle = 3 -- tree style display
|
||||||
vim.g.netrw_banner = 0 -- no banner needed
|
vim.g.netrw_banner = 0 -- no banner needed
|
||||||
vim.g.netrw_browse_split = 0
|
vim.g.netrw_browse_split = 0
|
||||||
vim.g.netrw_chgwin = 1
|
vim.g.netrw_chgwin = 1
|
||||||
|
|
||||||
--
|
--
|
||||||
-- EtC.
|
-- EtC.
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,9 @@ return {
|
||||||
"bash",
|
"bash",
|
||||||
"bibtex",
|
"bibtex",
|
||||||
"c",
|
"c",
|
||||||
|
"cs",
|
||||||
"cpp",
|
"cpp",
|
||||||
"css",
|
"cs",
|
||||||
"go",
|
"go",
|
||||||
"html",
|
"html",
|
||||||
"http",
|
"http",
|
||||||
|
|
@ -42,12 +43,12 @@ return {
|
||||||
dependencies = { 'ms-jpq/coq.artifacts' },
|
dependencies = { 'ms-jpq/coq.artifacts' },
|
||||||
branch = 'coq',
|
branch = 'coq',
|
||||||
build = ':COQdeps',
|
build = ':COQdeps',
|
||||||
|
event = { "VimEnter" },
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd([[autocmd VimEnter * COQnow -s]])
|
vim.cmd([[autocmd VimEnter * COQnow -s]])
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
--
|
|
||||||
-- Language Configurations
|
-- Language Configurations
|
||||||
--
|
--
|
||||||
{ 'ap/vim-css-color', lazy = false },
|
{ 'ap/vim-css-color', lazy = false },
|
||||||
|
|
@ -63,6 +64,21 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
{ 'bellinitte/uxntal.vim', lazy = false },
|
{ 'bellinitte/uxntal.vim', lazy = false },
|
||||||
|
{
|
||||||
|
'nvim-flutter/flutter-tools.nvim',
|
||||||
|
ft = 'dart',
|
||||||
|
dependencies = {
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
'nanotee/nvim-lsp-basics',
|
||||||
|
},
|
||||||
|
opts = {
|
||||||
|
lsp = {
|
||||||
|
color = {
|
||||||
|
enabled = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Language Server
|
-- Language Server
|
||||||
|
|
@ -108,11 +124,56 @@ return {
|
||||||
vim.diagnostic.config({ virtual_text = false })
|
vim.diagnostic.config({ virtual_text = false })
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'hrsh7th/cmp-nvim-lsp',
|
||||||
|
dependencies = {
|
||||||
|
'hrsh7th/nvim-cmp',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'jacob411/Ollama-Copilot',
|
||||||
|
dependencies = {
|
||||||
|
'hrsh7th/cmp-nvim-lsp',
|
||||||
|
},
|
||||||
|
opts = {
|
||||||
|
model_name = "qwen2.5-coder:14b",
|
||||||
|
stream_suggestion = false,
|
||||||
|
python_command = "python3",
|
||||||
|
filetypes = {
|
||||||
|
"bash",
|
||||||
|
"c",
|
||||||
|
"cpp",
|
||||||
|
"cs",
|
||||||
|
"dart",
|
||||||
|
"go",
|
||||||
|
"html",
|
||||||
|
"javascript",
|
||||||
|
"javascriptreact",
|
||||||
|
"json",
|
||||||
|
"lua",
|
||||||
|
"python",
|
||||||
|
"tex",
|
||||||
|
"typescript",
|
||||||
|
"typescriptreact",
|
||||||
|
},
|
||||||
|
ollama_model_opts = {
|
||||||
|
num_predict = 40,
|
||||||
|
temperature = 0.1,
|
||||||
|
},
|
||||||
|
keymaps = {
|
||||||
|
suggestion = '<leader>os',
|
||||||
|
reject = '<leader>or',
|
||||||
|
insert_accept = '<Leader><Tab>',
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'williamboman/mason-lspconfig.nvim',
|
'williamboman/mason-lspconfig.nvim',
|
||||||
dependencies = {
|
dependencies = {
|
||||||
'ms-jpq/coq_nvim',
|
'ms-jpq/coq_nvim',
|
||||||
'nanotee/nvim-lsp-basics',
|
'nanotee/nvim-lsp-basics',
|
||||||
|
'jacob411/Ollama-Copilot',
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
'stevearc/aerial.nvim',
|
'stevearc/aerial.nvim',
|
||||||
'williamboman/mason.nvim',
|
'williamboman/mason.nvim',
|
||||||
|
|
@ -135,6 +196,7 @@ return {
|
||||||
"bash",
|
"bash",
|
||||||
"c",
|
"c",
|
||||||
"cpp",
|
"cpp",
|
||||||
|
"cs",
|
||||||
"dart",
|
"dart",
|
||||||
"go",
|
"go",
|
||||||
"html",
|
"html",
|
||||||
|
|
@ -169,26 +231,14 @@ return {
|
||||||
-- Show code diagnostics in a separate buffer window
|
-- Show code diagnostics in a separate buffer window
|
||||||
{
|
{
|
||||||
'folke/trouble.nvim',
|
'folke/trouble.nvim',
|
||||||
opts = {
|
opts = {},
|
||||||
height = 6,
|
|
||||||
icons = false,
|
|
||||||
fold_open = "v",
|
|
||||||
fold_closed = ">",
|
|
||||||
signs = {
|
|
||||||
error = "E:",
|
|
||||||
warning = "W:",
|
|
||||||
hint = "H:",
|
|
||||||
information = "I:"
|
|
||||||
},
|
|
||||||
use_diagnostic_signs = false
|
|
||||||
},
|
|
||||||
|
|
||||||
cmd = {
|
cmd = {
|
||||||
"TroubleToggle",
|
"Trouble",
|
||||||
},
|
},
|
||||||
|
|
||||||
keys = {
|
keys = {
|
||||||
{'<Leader>t', ':TroubleToggle<CR>'},
|
{'<Leader>t', ':Trouble diagnostics toggle<CR>'},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
--
|
--
|
||||||
|
|
@ -220,6 +270,7 @@ return {
|
||||||
-- Open request results in a horizontal split
|
-- Open request results in a horizontal split
|
||||||
result_split_horizontal = true,
|
result_split_horizontal = true,
|
||||||
-- Keep the http file buffer above|left when split horizontal|vertical
|
-- Keep the http file buffer above|left when split horizontal|vertical
|
||||||
|
--
|
||||||
result_split_in_place = true,
|
result_split_in_place = true,
|
||||||
result = {
|
result = {
|
||||||
show_curl_command = false,
|
show_curl_command = false,
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ return {
|
||||||
{
|
{
|
||||||
'nathanaelkane/vim-indent-guides',
|
'nathanaelkane/vim-indent-guides',
|
||||||
lazy = false,
|
lazy = false,
|
||||||
setup = function()
|
init = function()
|
||||||
vim.g.indent_guides_guide_size = 1
|
vim.g.indent_guides_guide_size = 1
|
||||||
vim.g.indent_guides_tab_guides = 0
|
vim.g.indent_guides_tab_guides = 0
|
||||||
vim.g.indent_guides_start_level = 2
|
vim.g.indent_guides_start_level = 2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue