Merge pull request 'lazy' (#1) from lazy into master
Reviewed-on: fapmaster/nvim#1
This commit is contained in:
commit
4fc013a680
47
init.lua
47
init.lua
@ -1,6 +1,45 @@
|
|||||||
-- init.lua
|
-- init.lua
|
||||||
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
|
vim.fn.system({
|
||||||
|
"git",
|
||||||
|
"clone",
|
||||||
|
"--filter=blob:none",
|
||||||
|
"https://github.com/folke/lazy.nvim.git",
|
||||||
|
"--branch=stable", -- latest stable release
|
||||||
|
lazypath,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
vim.g.mapleader = " "
|
||||||
|
require("lazy").setup("plugins")
|
||||||
|
require("maps").init()
|
||||||
|
require("commands")
|
||||||
|
|
||||||
require('plugins')
|
vim.opt.backup = false
|
||||||
require('settings').init()
|
vim.opt.undodir = '/Users/fschmidt/.cache/nvim/undodir'
|
||||||
require('maps').init()
|
vim.opt.swapfile = false
|
||||||
require('commands')
|
vim.opt.undofile = true
|
||||||
|
vim.opt.smartcase = true
|
||||||
|
vim.opt.ignorecase = true
|
||||||
|
vim.opt.laststatus = 2
|
||||||
|
vim.opt.hidden = true
|
||||||
|
vim.opt.hlsearch = false
|
||||||
|
vim.opt.incsearch = true
|
||||||
|
vim.opt.scrolloff = 12
|
||||||
|
vim.opt.sidescrolloff = 8
|
||||||
|
vim.opt.mouse = 'a'
|
||||||
|
vim.opt.autochdir = true
|
||||||
|
vim.opt.clipboard = 'unnamed,unnamedplus'
|
||||||
|
vim.opt.number = true
|
||||||
|
vim.opt.wrap = false
|
||||||
|
vim.opt.signcolumn = 'yes:2'
|
||||||
|
vim.opt.list = true
|
||||||
|
vim.opt.listchars = 'tab:▸ ,trail:·'
|
||||||
|
vim.opt.shiftwidth = 4
|
||||||
|
vim.opt.tabstop = 4
|
||||||
|
vim.opt.softtabstop = 4
|
||||||
|
vim.opt.expandtab = false
|
||||||
|
vim.opt.autoindent = true
|
||||||
|
vim.opt.smartindent = true
|
||||||
|
vim.opt.completeopt = { "menu", "menuone", "noselect" }
|
||||||
|
31
lazy-lock.json
Normal file
31
lazy-lock.json
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"LuaSnip": { "branch": "master", "commit": "f7c845749aba6096f041a73a26ba64f3817bab99" },
|
||||||
|
"bufferline.nvim": { "branch": "main", "commit": "52d6acabb79c8c0942f8873a0ca7848eb2159267" },
|
||||||
|
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
||||||
|
"cmp-cmdline": { "branch": "main", "commit": "8fcc934a52af96120fe26358985c10c035984b53" },
|
||||||
|
"cmp-nvim-lsp": { "branch": "main", "commit": "0e6b2ed705ddcff9738ec4ea838141654f12eeef" },
|
||||||
|
"cmp-nvim-lsp-signature-help": { "branch": "main", "commit": "3d8912ebeb56e5ae08ef0906e3a54de1c66b92f1" },
|
||||||
|
"cmp-nvim-lua": { "branch": "main", "commit": "f3491638d123cfd2c8048aefaf66d246ff250ca6" },
|
||||||
|
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
|
||||||
|
"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" },
|
||||||
|
"dashboard-nvim": { "branch": "master", "commit": "398ba8d9390c13c87a964cbca756319531fffdb7" },
|
||||||
|
"fidget.nvim": { "branch": "main", "commit": "688b4fec4517650e29c3e63cfbb6e498b3112ba1" },
|
||||||
|
"gitsigns.nvim": { "branch": "main", "commit": "f388995990aba04cfdc7c3ab870c33e280601109" },
|
||||||
|
"kanagawa.nvim": { "branch": "master", "commit": "4c8d48726621a7f3998c7ed35b2c2535abc22def" },
|
||||||
|
"lazy.nvim": { "branch": "main", "commit": "8077428e63feb0f3bf795d53b23ba1695b28ab0e" },
|
||||||
|
"lspkind-nvim": { "branch": "master", "commit": "c68b3a003483cf382428a43035079f78474cd11e" },
|
||||||
|
"lualine.nvim": { "branch": "master", "commit": "e99d733e0213ceb8f548ae6551b04ae32e590c80" },
|
||||||
|
"mason-lspconfig.nvim": { "branch": "main", "commit": "3f9c0ea157e88b08e2d11ec65002eeb6e421f0da" },
|
||||||
|
"mason.nvim": { "branch": "main", "commit": "63cff223169324a2e633954ac580c7c327182a97" },
|
||||||
|
"nvim-autopairs": { "branch": "master", "commit": "6a5faeabdbcc86cfbf1561ae430a451a72126e81" },
|
||||||
|
"nvim-cmp": { "branch": "main", "commit": "7a3b1e76f74934b12fda82158237c6ad8bfd3d40" },
|
||||||
|
"nvim-lspconfig": { "branch": "master", "commit": "62856b20751b748841b0f3ec5a10b1e2f6a6dbc9" },
|
||||||
|
"nvim-tree.lua": { "branch": "master", "commit": "9c97e6449b0b0269bd44e1fd4857184dfa57bb4c" },
|
||||||
|
"nvim-treesitter": { "branch": "master", "commit": "b4d8b7e5a374b800838a13aa6829ac4d542c6f1c" },
|
||||||
|
"nvim-web-devicons": { "branch": "master", "commit": "4709a504d2cd2680fb511675e64ef2790d491d36" },
|
||||||
|
"playground": { "branch": "master", "commit": "4044b53c4d4fcd7a78eae20b8627f78ce7dc6f56" },
|
||||||
|
"plenary.nvim": { "branch": "master", "commit": "253d34830709d690f013daf2853a9d21ad7accab" },
|
||||||
|
"rust-tools.nvim": { "branch": "master", "commit": "71d2cf67b5ed120a0e31b2c8adb210dd2834242f" },
|
||||||
|
"telescope.nvim": { "branch": "master", "commit": "c1a2af0af69e80e14e6b226d3957a064cd080805" },
|
||||||
|
"vimwiki": { "branch": "dev", "commit": "fea8bee382b2051b0137fd2cacf0862823ee69b3" }
|
||||||
|
}
|
16
lua/maps.lua
16
lua/maps.lua
@ -42,21 +42,6 @@ function maps.centeredSearch()
|
|||||||
map('n', 'N', 'Nzzzv')
|
map('n', 'N', 'Nzzzv')
|
||||||
end
|
end
|
||||||
|
|
||||||
function maps.moveToWindow()
|
|
||||||
map('t', 'ª', '<C-\\><C-N><C-w>h')
|
|
||||||
map('t', 'º', '<C-\\><C-N><C-w>j')
|
|
||||||
map('t', '∆', '<C-\\><C-N><C-w>k')
|
|
||||||
map('t', '@', '<C-\\><C-N><C-w>l')
|
|
||||||
map('i', 'ª', '<C-\\><C-N><C-w>h')
|
|
||||||
map('i', 'º', '<C-\\><C-N><C-w>j')
|
|
||||||
map('i', '∆', '<C-\\><C-N><C-w>k')
|
|
||||||
map('i', '@', '<C-\\><C-N><C-w>l')
|
|
||||||
map('n', 'ª', '<C-w>h')
|
|
||||||
map('n', 'º', '<C-w>j')
|
|
||||||
map('n', '∆', '<C-w>k')
|
|
||||||
map('n', '@', '<C-w>l')
|
|
||||||
end
|
|
||||||
|
|
||||||
function maps.init()
|
function maps.init()
|
||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
|
|
||||||
@ -69,7 +54,6 @@ function maps.init()
|
|||||||
maps.fixIndent()
|
maps.fixIndent()
|
||||||
maps.moveByRow()
|
maps.moveByRow()
|
||||||
maps.centeredSearch()
|
maps.centeredSearch()
|
||||||
-- maps.moveToWindow()
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return maps
|
return maps
|
||||||
|
@ -1,70 +0,0 @@
|
|||||||
-- plugin.lua
|
|
||||||
|
|
||||||
|
|
||||||
require 'paq' {
|
|
||||||
-- Handle itself
|
|
||||||
'savq/paq-nvim';
|
|
||||||
|
|
||||||
-- Theme
|
|
||||||
'kyazdani42/nvim-web-devicons';
|
|
||||||
{ 'folke/tokyonight.nvim', { branch = 'main' } };
|
|
||||||
'tiagovla/tokyodark.nvim';
|
|
||||||
'rebelot/kanagawa.nvim';
|
|
||||||
'sainnhe/everforest';
|
|
||||||
'navarasu/onedark.nvim';
|
|
||||||
'rose-pine/neovim';
|
|
||||||
'rmehri01/onenord.nvim';
|
|
||||||
'EdenEast/nightfox.nvim';
|
|
||||||
'tanvirtin/monokai.nvim';
|
|
||||||
'catppuccin/nvim';
|
|
||||||
'briones-gabriel/darcula-solid.nvim';
|
|
||||||
'rktjmp/lush.nvim';
|
|
||||||
|
|
||||||
|
|
||||||
-- treesitter
|
|
||||||
'nvim-treesitter/nvim-treesitter';
|
|
||||||
'nvim-treesitter/playground';
|
|
||||||
|
|
||||||
-- Utils
|
|
||||||
'akinsho/nvim-bufferline.lua';
|
|
||||||
'hoob3rt/lualine.nvim';
|
|
||||||
'j-hui/fidget.nvim';
|
|
||||||
'airblade/vim-gitgutter';
|
|
||||||
'nvim-lua/popup.nvim';
|
|
||||||
'nvim-lua/plenary.nvim';
|
|
||||||
|
|
||||||
-- File Navigation
|
|
||||||
'kyazdani42/nvim-tree.lua';
|
|
||||||
'nvim-telescope/telescope.nvim';
|
|
||||||
|
|
||||||
-- lsp
|
|
||||||
'williamboman/mason.nvim';
|
|
||||||
'williamboman/mason-lspconfig.nvim';
|
|
||||||
'neovim/nvim-lspconfig';
|
|
||||||
'onsails/lspkind-nvim'; -- pictograms
|
|
||||||
'simrat39/rust-tools.nvim';
|
|
||||||
|
|
||||||
-- completion
|
|
||||||
'hrsh7th/cmp-nvim-lsp';
|
|
||||||
'hrsh7th/cmp-nvim-lsp-signature-help';
|
|
||||||
'hrsh7th/cmp-buffer';
|
|
||||||
'hrsh7th/cmp-path';
|
|
||||||
'hrsh7th/cmp-nvim-lua';
|
|
||||||
'hrsh7th/cmp-cmdline';
|
|
||||||
'hrsh7th/nvim-cmp';
|
|
||||||
|
|
||||||
-- snippets needed for cmp
|
|
||||||
'L3MON4D3/LuaSnip';
|
|
||||||
'saadparwaiz1/cmp_luasnip';
|
|
||||||
|
|
||||||
-- autopair
|
|
||||||
'windwp/nvim-autopairs';
|
|
||||||
|
|
||||||
-- Linting & formtatting
|
|
||||||
'jose-elias-alvarez/null-ls.nvim';
|
|
||||||
|
|
||||||
-- writing
|
|
||||||
'vimwiki/vimwiki';
|
|
||||||
'junegunn/goyo.vim';
|
|
||||||
'junegunn/limelight.vim';
|
|
||||||
}
|
|
192
lua/plugins/lsp.lua
Normal file
192
lua/plugins/lsp.lua
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
local opts = { noremap = true, silent = true }
|
||||||
|
vim.keymap.set('n', '<space>e', vim.diagnostic.open_float, opts)
|
||||||
|
vim.keymap.set('n', ',d', vim.diagnostic.goto_prev, opts)
|
||||||
|
vim.keymap.set('n', '.d', vim.diagnostic.goto_next, opts)
|
||||||
|
|
||||||
|
local lsp_attach = function(client, buf)
|
||||||
|
vim.api.nvim_buf_set_option(buf, "formatexpr", "v:lua.vim.lsp.formatexpr()")
|
||||||
|
vim.api.nvim_buf_set_option(buf, "omnifunc", "v:lua.vim.lsp.omnifunc")
|
||||||
|
vim.api.nvim_buf_set_option(buf, "tagfunc", "v:lua.vim.lsp.tagfunc")
|
||||||
|
|
||||||
|
local bufopts = { noremap = true, silent = true, buffer = buf }
|
||||||
|
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, bufopts)
|
||||||
|
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, bufopts)
|
||||||
|
vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts)
|
||||||
|
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, bufopts)
|
||||||
|
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, bufopts)
|
||||||
|
vim.keymap.set('n', '<space>D', vim.lsp.buf.type_definition, bufopts)
|
||||||
|
vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, bufopts)
|
||||||
|
vim.keymap.set('n', '<space>ca', vim.lsp.buf.code_action, bufopts)
|
||||||
|
vim.keymap.set('n', 'gr', vim.lsp.buf.references, bufopts)
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
-- lsp
|
||||||
|
{
|
||||||
|
'williamboman/mason.nvim',
|
||||||
|
config = true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'williamboman/mason-lspconfig.nvim',
|
||||||
|
config = true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'neovim/nvim-lspconfig',
|
||||||
|
config = function()
|
||||||
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||||
|
local lspconfig = require('lspconfig')
|
||||||
|
|
||||||
|
lspconfig.lua_ls.setup {
|
||||||
|
capabilities = capabilities,
|
||||||
|
settings = {
|
||||||
|
Lua = {
|
||||||
|
diagnostics = {
|
||||||
|
globals = { 'vim' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
on_attach = lsp_attach
|
||||||
|
}
|
||||||
|
lspconfig.tsserver.setup {
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
}
|
||||||
|
lspconfig.gopls.setup {
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
}
|
||||||
|
--lspconfig.rust_analyzer.setup {
|
||||||
|
-- capabilities = capabilities,
|
||||||
|
-- on_attach = lsp_attach
|
||||||
|
--}
|
||||||
|
require("rust-tools").setup({
|
||||||
|
server = {
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach,
|
||||||
|
standalone = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
lspconfig.bashls.setup {
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
}
|
||||||
|
lspconfig.sqlls.setup({
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
})
|
||||||
|
lspconfig.html.setup({
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
})
|
||||||
|
lspconfig.cssls.setup({
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
})
|
||||||
|
lspconfig.tailwindcss.setup({
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
})
|
||||||
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
||||||
|
lspconfig.emmet_ls.setup({
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = lsp_attach
|
||||||
|
})
|
||||||
|
end
|
||||||
|
},
|
||||||
|
{ 'simrat39/rust-tools.nvim' },
|
||||||
|
{ 'onsails/lspkind-nvim' }, -- pictograms replace (?) with lspsaga
|
||||||
|
{ 'j-hui/fidget.nvim' }, -- show lsp status
|
||||||
|
-- completion
|
||||||
|
{
|
||||||
|
'hrsh7th/nvim-cmp',
|
||||||
|
config = function()
|
||||||
|
local cmp = require('cmp')
|
||||||
|
local lspkind = require('lspkind')
|
||||||
|
|
||||||
|
vim.opt.shortmess:append 'c'
|
||||||
|
|
||||||
|
cmp.setup({
|
||||||
|
snippet = {
|
||||||
|
expand = function(args)
|
||||||
|
require('luasnip').lsp_expand(args.body)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
mapping = cmp.mapping.preset.insert({
|
||||||
|
["<C-n>"] = cmp.mapping.select_next_item { behavior = cmp.SelectBehavior.Insert },
|
||||||
|
["<C-p>"] = cmp.mapping.select_prev_item { behavior = cmp.SelectBehavior.Insert },
|
||||||
|
['<C-b>'] = cmp.mapping(cmp.mapping.scroll_docs(-4), { 'i', 'c' }),
|
||||||
|
['<C-f>'] = cmp.mapping(cmp.mapping.scroll_docs(4), { 'i', 'c' }),
|
||||||
|
['<C-s>'] = cmp.mapping(cmp.mapping.complete(), { 'i', 'c' }),
|
||||||
|
['<C-y>'] = cmp.mapping.confirm({
|
||||||
|
behavior = cmp.ConfirmBehavior.Insert,
|
||||||
|
select = true
|
||||||
|
}),
|
||||||
|
['<C-e>'] = cmp.mapping({
|
||||||
|
i = cmp.mapping.abort(),
|
||||||
|
c = cmp.mapping.close(),
|
||||||
|
}),
|
||||||
|
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
||||||
|
}),
|
||||||
|
sources = cmp.config.sources({
|
||||||
|
{ name = 'nvim_lua' },
|
||||||
|
{ name = 'nvim_lsp' },
|
||||||
|
{ name = 'path' },
|
||||||
|
{ name = 'luasnip' },
|
||||||
|
{ name = 'nvim_lsp_signature_help' },
|
||||||
|
}, {
|
||||||
|
{ name = 'buffer', keyword_length = 5 },
|
||||||
|
}),
|
||||||
|
formatting = {
|
||||||
|
format = lspkind.cmp_format {
|
||||||
|
with_text = true,
|
||||||
|
menu = {
|
||||||
|
buffer = "[buf]",
|
||||||
|
nvim_lsp = "[LSP]",
|
||||||
|
nvim_lua = "[api]",
|
||||||
|
path = "[path]",
|
||||||
|
luasnip = "[snip]",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Use buffer source for `/` (basically search words in buffer)
|
||||||
|
cmp.setup.cmdline('/', {
|
||||||
|
sources = {
|
||||||
|
{ name = 'buffer' }
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Use cmdline & path source for ':'
|
||||||
|
cmp.setup.cmdline(':', {
|
||||||
|
sources = cmp.config.sources({
|
||||||
|
{ name = 'path' }
|
||||||
|
}, {
|
||||||
|
{ name = 'cmdline' }
|
||||||
|
})
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
event = 'InsertEnter',
|
||||||
|
dependencies = {
|
||||||
|
'hrsh7th/cmp-nvim-lsp',
|
||||||
|
'hrsh7th/cmp-nvim-lsp-signature-help',
|
||||||
|
'hrsh7th/cmp-buffer',
|
||||||
|
'hrsh7th/cmp-path',
|
||||||
|
'hrsh7th/cmp-nvim-lua',
|
||||||
|
'hrsh7th/cmp-cmdline',
|
||||||
|
'saadparwaiz1/cmp_luasnip',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'L3MON4D3/LuaSnip',
|
||||||
|
config = function()
|
||||||
|
require("luasnip.loaders.from_lua").load({ paths = "~/.config/nvim/snippets/" })
|
||||||
|
end
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'windwp/nvim-autopairs',
|
||||||
|
config = true
|
||||||
|
},
|
||||||
|
}
|
||||||
|
-- -- Linting & formtatting
|
||||||
|
-- 'jose-elias-alvarez/null-ls.nvim';
|
67
lua/plugins/navigation.lua
Normal file
67
lua/plugins/navigation.lua
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
'nvim-telescope/telescope.nvim',
|
||||||
|
tag = '0.1.1',
|
||||||
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'nvim-tree/nvim-tree.lua',
|
||||||
|
config = function()
|
||||||
|
require('nvim-tree').setup {
|
||||||
|
disable_netrw = true,
|
||||||
|
hijack_netrw = true,
|
||||||
|
open_on_setup = false,
|
||||||
|
ignore_ft_on_setup = {},
|
||||||
|
open_on_tab = false,
|
||||||
|
hijack_cursor = false,
|
||||||
|
update_cwd = true,
|
||||||
|
hijack_directories = {
|
||||||
|
enable = true,
|
||||||
|
auto_open = true,
|
||||||
|
},
|
||||||
|
diagnostics = {
|
||||||
|
enable = false,
|
||||||
|
icons = {
|
||||||
|
hint = "",
|
||||||
|
info = "",
|
||||||
|
warning = "",
|
||||||
|
error = "",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
update_focused_file = {
|
||||||
|
enable = false,
|
||||||
|
update_cwd = false,
|
||||||
|
ignore_list = {}
|
||||||
|
},
|
||||||
|
system_open = {
|
||||||
|
cmd = nil,
|
||||||
|
args = {}
|
||||||
|
},
|
||||||
|
filters = {
|
||||||
|
dotfiles = false,
|
||||||
|
custom = {}
|
||||||
|
},
|
||||||
|
git = {
|
||||||
|
enable = true,
|
||||||
|
ignore = true,
|
||||||
|
timeout = 500,
|
||||||
|
},
|
||||||
|
view = {
|
||||||
|
width = 30,
|
||||||
|
hide_root_folder = false,
|
||||||
|
side = 'left',
|
||||||
|
mappings = {
|
||||||
|
custom_only = false,
|
||||||
|
list = {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
actions = {
|
||||||
|
open_file = {
|
||||||
|
resize_window = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||||
|
}
|
||||||
|
}
|
52
lua/plugins/style.lua
Normal file
52
lua/plugins/style.lua
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
'rebelot/kanagawa.nvim',
|
||||||
|
config = function()
|
||||||
|
vim.opt.guifont = 'Source Code Pro for Powerline'
|
||||||
|
vim.g.limelight_conceal_ctermfg = 'gray'
|
||||||
|
vim.cmd('colorscheme kanagawa')
|
||||||
|
vim.cmd('set termguicolors')
|
||||||
|
vim.opt.syntax = 'on'
|
||||||
|
end
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'nvim-treesitter/nvim-treesitter',
|
||||||
|
build = ':TSUpdate',
|
||||||
|
config = function()
|
||||||
|
require('nvim-treesitter.configs').setup {
|
||||||
|
highlight = {
|
||||||
|
enable = true,
|
||||||
|
additional_vim_regex_highlighting = false,
|
||||||
|
},
|
||||||
|
indent = {
|
||||||
|
enable = true,
|
||||||
|
disable = { "html" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
dependencies = { 'nvim-treesitter/playground' }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'akinsho/bufferline.nvim',
|
||||||
|
tag = "v3.3.0",
|
||||||
|
config = true,
|
||||||
|
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'hoob3rt/lualine.nvim',
|
||||||
|
config = function()
|
||||||
|
require('lualine').setup {
|
||||||
|
options = {
|
||||||
|
theme = 'kanagawa'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
end
|
||||||
|
},
|
||||||
|
{ 'lewis6991/gitsigns.nvim' },
|
||||||
|
{
|
||||||
|
'glepnir/dashboard-nvim',
|
||||||
|
event = 'VimEnter',
|
||||||
|
config = true,
|
||||||
|
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||||
|
},
|
||||||
|
}
|
12
lua/plugins/writing.lua
Normal file
12
lua/plugins/writing.lua
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
return {
|
||||||
|
-- writing
|
||||||
|
{
|
||||||
|
'vimwiki/vimwiki',
|
||||||
|
ft = { 'md', 'wiki', 'tex' },
|
||||||
|
config = function()
|
||||||
|
vim.g.vimwiki_list = { { path = '~/Documents/Buch/wiki', syntax = 'markdown', ext = '.md' } }
|
||||||
|
end
|
||||||
|
},
|
||||||
|
--{ 'junegunn/goyo.vim' }, -- try replacing these 2 at some point because they don't work that well anymore
|
||||||
|
--{ 'junegunn/limelight.vim' },
|
||||||
|
}
|
@ -1,73 +0,0 @@
|
|||||||
-- Completion
|
|
||||||
|
|
||||||
local completion = {}
|
|
||||||
local cmp = require('cmp')
|
|
||||||
local lspkind = require('lspkind')
|
|
||||||
|
|
||||||
vim.opt.shortmess:append 'c'
|
|
||||||
|
|
||||||
cmp.setup({
|
|
||||||
snippet = {
|
|
||||||
expand = function(args)
|
|
||||||
require('luasnip').lsp_expand(args.body)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
mapping = cmp.mapping.preset.insert({
|
|
||||||
["<C-n>"] = cmp.mapping.select_next_item { behavior = cmp.SelectBehavior.Insert },
|
|
||||||
["<C-p>"] = cmp.mapping.select_prev_item { behavior = cmp.SelectBehavior.Insert },
|
|
||||||
['<C-b>'] = cmp.mapping(cmp.mapping.scroll_docs(-4), { 'i', 'c' }),
|
|
||||||
['<C-f>'] = cmp.mapping(cmp.mapping.scroll_docs(4), { 'i', 'c' }),
|
|
||||||
['<C-s>'] = cmp.mapping(cmp.mapping.complete(), { 'i', 'c' }),
|
|
||||||
['<C-y>'] = cmp.mapping.confirm({
|
|
||||||
behavior = cmp.ConfirmBehavior.Insert,
|
|
||||||
select = true
|
|
||||||
}),
|
|
||||||
['<C-e>'] = cmp.mapping({
|
|
||||||
i = cmp.mapping.abort(),
|
|
||||||
c = cmp.mapping.close(),
|
|
||||||
}),
|
|
||||||
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
|
||||||
}),
|
|
||||||
sources = cmp.config.sources({
|
|
||||||
{ name = 'nvim_lua' },
|
|
||||||
{ name = 'nvim_lsp' },
|
|
||||||
{ name = 'path' },
|
|
||||||
{ name = 'luasnip' },
|
|
||||||
{ name = 'nvim_lsp_signature_help' },
|
|
||||||
}, {
|
|
||||||
{ name = 'buffer', keyword_length = 5 },
|
|
||||||
}),
|
|
||||||
formatting = {
|
|
||||||
format = lspkind.cmp_format {
|
|
||||||
with_text = true,
|
|
||||||
menu = {
|
|
||||||
buffer = "[buf]",
|
|
||||||
nvim_lsp = "[LSP]",
|
|
||||||
nvim_lua = "[api]",
|
|
||||||
path = "[path]",
|
|
||||||
luasnip = "[snip]",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Use buffer source for `/` (basically search words in buffer)
|
|
||||||
cmp.setup.cmdline('/', {
|
|
||||||
sources = {
|
|
||||||
{ name = 'buffer' }
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Use cmdline & path source for ':'
|
|
||||||
cmp.setup.cmdline(':', {
|
|
||||||
sources = cmp.config.sources({
|
|
||||||
{ name = 'path' }
|
|
||||||
}, {
|
|
||||||
{ name = 'cmdline' }
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
-- autopair
|
|
||||||
require('nvim-autopairs').setup {}
|
|
||||||
|
|
||||||
return completion
|
|
@ -1,49 +0,0 @@
|
|||||||
-- settings.lua
|
|
||||||
|
|
||||||
local settings = {}
|
|
||||||
|
|
||||||
function settings.initMisc()
|
|
||||||
vim.opt.backup = false
|
|
||||||
vim.opt.undodir = '/Users/fschmidt/.cache/nvim/undodir'
|
|
||||||
vim.opt.swapfile = false
|
|
||||||
vim.opt.undofile = true
|
|
||||||
vim.opt.smartcase = true
|
|
||||||
vim.opt.ignorecase = true
|
|
||||||
vim.opt.laststatus = 2
|
|
||||||
vim.opt.hidden = true
|
|
||||||
vim.opt.hlsearch = false
|
|
||||||
vim.opt.incsearch = true
|
|
||||||
vim.opt.scrolloff = 12
|
|
||||||
vim.opt.sidescrolloff = 8
|
|
||||||
vim.opt.mouse = 'a'
|
|
||||||
vim.opt.autochdir = true
|
|
||||||
vim.opt.clipboard = 'unnamed,unnamedplus'
|
|
||||||
vim.opt.number = true
|
|
||||||
vim.opt.wrap = false
|
|
||||||
vim.opt.signcolumn = 'yes:2'
|
|
||||||
vim.opt.list = true
|
|
||||||
vim.opt.listchars = 'tab:▸ ,trail:·'
|
|
||||||
vim.opt.shiftwidth = 4
|
|
||||||
vim.opt.tabstop = 4
|
|
||||||
vim.opt.softtabstop = 4
|
|
||||||
vim.opt.expandtab = false
|
|
||||||
vim.opt.autoindent = true
|
|
||||||
vim.opt.smartindent = true
|
|
||||||
vim.opt.completeopt = { "menu", "menuone", "noselect" }
|
|
||||||
end
|
|
||||||
|
|
||||||
function settings.initVimWiki()
|
|
||||||
vim.g.vimwiki_list = { { path = '~/Documents/Buch/wiki', syntax = 'markdown', ext = '.md' } }
|
|
||||||
end
|
|
||||||
|
|
||||||
function settings.init()
|
|
||||||
settings.initMisc()
|
|
||||||
settings.initVimWiki()
|
|
||||||
require('settings.theme').init()
|
|
||||||
require('settings.lsp').init()
|
|
||||||
require('settings.completion')
|
|
||||||
require('settings.tree')
|
|
||||||
require('settings.luasnip')
|
|
||||||
end
|
|
||||||
|
|
||||||
return settings
|
|
@ -1,91 +0,0 @@
|
|||||||
-- LSP Config
|
|
||||||
|
|
||||||
local lsp = {}
|
|
||||||
|
|
||||||
local opts = { noremap = true, silent = true }
|
|
||||||
vim.keymap.set('n', '<space>e', vim.diagnostic.open_float, opts)
|
|
||||||
vim.keymap.set('n', ',d', vim.diagnostic.goto_prev, opts)
|
|
||||||
vim.keymap.set('n', '.d', vim.diagnostic.goto_next, opts)
|
|
||||||
|
|
||||||
local lsp_attach = function(client, buf)
|
|
||||||
vim.api.nvim_buf_set_option(buf, "formatexpr", "v:lua.vim.lsp.formatexpr()")
|
|
||||||
vim.api.nvim_buf_set_option(buf, "omnifunc", "v:lua.vim.lsp.omnifunc")
|
|
||||||
vim.api.nvim_buf_set_option(buf, "tagfunc", "v:lua.vim.lsp.tagfunc")
|
|
||||||
|
|
||||||
local bufopts = { noremap = true, silent = true, buffer = buf }
|
|
||||||
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, bufopts)
|
|
||||||
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, bufopts)
|
|
||||||
vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts)
|
|
||||||
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, bufopts)
|
|
||||||
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, bufopts)
|
|
||||||
vim.keymap.set('n', '<space>D', vim.lsp.buf.type_definition, bufopts)
|
|
||||||
vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, bufopts)
|
|
||||||
vim.keymap.set('n', '<space>ca', vim.lsp.buf.code_action, bufopts)
|
|
||||||
vim.keymap.set('n', 'gr', vim.lsp.buf.references, bufopts)
|
|
||||||
end
|
|
||||||
|
|
||||||
function lsp.init()
|
|
||||||
require('mason').setup()
|
|
||||||
require('mason-lspconfig').setup()
|
|
||||||
|
|
||||||
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
|
||||||
local lspconfig = require('lspconfig')
|
|
||||||
|
|
||||||
lspconfig.sumneko_lua.setup {
|
|
||||||
capabilities = capabilities,
|
|
||||||
settings = {
|
|
||||||
Lua = {
|
|
||||||
diagnostics = {
|
|
||||||
globals = { 'vim' }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
on_attach = lsp_attach
|
|
||||||
}
|
|
||||||
lspconfig.tsserver.setup {
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
}
|
|
||||||
lspconfig.gopls.setup {
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
}
|
|
||||||
--lspconfig.rust_analyzer.setup {
|
|
||||||
-- capabilities = capabilities,
|
|
||||||
-- on_attach = lsp_attach
|
|
||||||
--}
|
|
||||||
require("rust-tools").setup({
|
|
||||||
server = {
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach,
|
|
||||||
standalone = false
|
|
||||||
}
|
|
||||||
})
|
|
||||||
lspconfig.bashls.setup {
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
}
|
|
||||||
lspconfig.sqlls.setup({
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
})
|
|
||||||
lspconfig.html.setup({
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
})
|
|
||||||
lspconfig.cssls.setup({
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
})
|
|
||||||
lspconfig.tailwindcss.setup({
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
})
|
|
||||||
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
|
||||||
lspconfig.emmet_ls.setup({
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = lsp_attach
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
return lsp
|
|
@ -1,3 +0,0 @@
|
|||||||
local ls = require("luasnip")
|
|
||||||
|
|
||||||
require("luasnip.loaders.from_lua").load({ paths = "~/.config/nvim/snippets/" })
|
|
@ -1,51 +0,0 @@
|
|||||||
-- Theming
|
|
||||||
|
|
||||||
local theme = {}
|
|
||||||
|
|
||||||
function theme.initFont()
|
|
||||||
vim.opt.guifont = 'Source Code Pro for Powerline'
|
|
||||||
end
|
|
||||||
|
|
||||||
function theme.lsp_status()
|
|
||||||
require('fidget').setup {}
|
|
||||||
end
|
|
||||||
|
|
||||||
function theme.initStatusline()
|
|
||||||
require('lualine').setup {
|
|
||||||
options = {
|
|
||||||
theme = 'kanagawa'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
function theme.initBufferline()
|
|
||||||
local bufferline = require 'bufferline'
|
|
||||||
bufferline.setup()
|
|
||||||
end
|
|
||||||
|
|
||||||
function theme.initColorscheme()
|
|
||||||
vim.g.limelight_conceal_ctermfg = 'gray'
|
|
||||||
vim.cmd 'colorscheme kanagawa'
|
|
||||||
vim.cmd 'set termguicolors'
|
|
||||||
vim.opt.syntax = 'on'
|
|
||||||
require('nvim-treesitter.configs').setup {
|
|
||||||
highlight = {
|
|
||||||
enable = true,
|
|
||||||
additional_vim_regex_highlighting = false,
|
|
||||||
},
|
|
||||||
indent = {
|
|
||||||
enable = true,
|
|
||||||
disable = { "html" }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
function theme.init()
|
|
||||||
theme.initFont()
|
|
||||||
theme.lsp_status()
|
|
||||||
theme.initStatusline()
|
|
||||||
theme.initBufferline()
|
|
||||||
theme.initColorscheme()
|
|
||||||
end
|
|
||||||
|
|
||||||
return theme
|
|
@ -1,60 +0,0 @@
|
|||||||
-- Tree
|
|
||||||
|
|
||||||
local tree = {}
|
|
||||||
|
|
||||||
require('nvim-tree').setup {
|
|
||||||
disable_netrw = true,
|
|
||||||
hijack_netrw = true,
|
|
||||||
open_on_setup = false,
|
|
||||||
ignore_ft_on_setup = {},
|
|
||||||
open_on_tab = false,
|
|
||||||
hijack_cursor = false,
|
|
||||||
update_cwd = true,
|
|
||||||
hijack_directories = {
|
|
||||||
enable = true,
|
|
||||||
auto_open = true,
|
|
||||||
},
|
|
||||||
diagnostics = {
|
|
||||||
enable = false,
|
|
||||||
icons = {
|
|
||||||
hint = "",
|
|
||||||
info = "",
|
|
||||||
warning = "",
|
|
||||||
error = "",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
update_focused_file = {
|
|
||||||
enable = false,
|
|
||||||
update_cwd = false,
|
|
||||||
ignore_list = {}
|
|
||||||
},
|
|
||||||
system_open = {
|
|
||||||
cmd = nil,
|
|
||||||
args = {}
|
|
||||||
},
|
|
||||||
filters = {
|
|
||||||
dotfiles = false,
|
|
||||||
custom = {}
|
|
||||||
},
|
|
||||||
git = {
|
|
||||||
enable = true,
|
|
||||||
ignore = true,
|
|
||||||
timeout = 500,
|
|
||||||
},
|
|
||||||
view = {
|
|
||||||
width = 30,
|
|
||||||
hide_root_folder = false,
|
|
||||||
side = 'left',
|
|
||||||
mappings = {
|
|
||||||
custom_only = false,
|
|
||||||
list = {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
actions = {
|
|
||||||
open_file = {
|
|
||||||
resize_window = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return tree
|
|
Loading…
Reference in New Issue
Block a user