Přidána Neovim konfigurace
This commit is contained in:
8
lua/config/autocmds.lua
Normal file
8
lua/config/autocmds.lua
Normal file
@ -0,0 +1,8 @@
|
||||
-- Autocmds are automatically loaded on the VeryLazy event
|
||||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
||||
--
|
||||
-- Add any additional autocmds here
|
||||
-- with `vim.api.nvim_create_autocmd`
|
||||
--
|
||||
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
|
||||
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")
|
3
lua/config/keymaps.lua
Normal file
3
lua/config/keymaps.lua
Normal file
@ -0,0 +1,3 @@
|
||||
-- Keymaps are automatically loaded on the VeryLazy event
|
||||
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
|
||||
-- Add any additional keymaps here
|
53
lua/config/lazy.lua
Normal file
53
lua/config/lazy.lua
Normal file
@ -0,0 +1,53 @@
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
-- add LazyVim and import its plugins
|
||||
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
||||
-- import/override with your plugins
|
||||
{ import = "plugins" },
|
||||
},
|
||||
defaults = {
|
||||
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
||||
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
|
||||
lazy = false,
|
||||
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
|
||||
-- have outdated releases, which may break your Neovim install.
|
||||
version = false, -- always use the latest git commit
|
||||
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
||||
},
|
||||
install = { colorscheme = { "tokyonight", "habamax" } },
|
||||
checker = {
|
||||
enabled = true, -- check for plugin updates periodically
|
||||
notify = false, -- notify on update
|
||||
}, -- automatically check for plugin updates
|
||||
performance = {
|
||||
rtp = {
|
||||
-- disable some rtp plugins
|
||||
disabled_plugins = {
|
||||
"gzip",
|
||||
-- "matchit",
|
||||
-- "matchparen",
|
||||
-- "netrwPlugin",
|
||||
"tarPlugin",
|
||||
"tohtml",
|
||||
"tutor",
|
||||
"zipPlugin",
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
132
lua/config/options.lua
Normal file
132
lua/config/options.lua
Normal file
@ -0,0 +1,132 @@
|
||||
-- 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
|
||||
-- 🏁 Nastavení leader klávesy (pro vlastní klávesové zkratky)
|
||||
vim.g.mapleader = " " -- Leader key je mezerník (Space)
|
||||
vim.g.maplocalleader = "\\" -- Lokální leader key je zpětné lomítko (`\`)
|
||||
|
||||
-- 🔄 Automatické formátování kódu při uložení souboru
|
||||
vim.g.autoformat = true -- Pokud nechceš, změň na `false`
|
||||
|
||||
-- 🎭 Animace v LazyVim (například animované přepínání mezi okny)
|
||||
vim.g.snacks_animate = true -- Pokud nechceš animace, změň na `false`
|
||||
|
||||
-- 🔍 Výběr vyhledávacího nástroje (Telescope nebo FZF)
|
||||
vim.g.lazyvim_picker = "auto" -- Pokud chceš jen Telescope, změň na `"telescope"`
|
||||
|
||||
-- ⚡ Výběr doplňování kódu (nvim-cmp nebo blink.cmp)
|
||||
vim.g.lazyvim_cmp = "auto" -- Auto vybere nejlepší možnost
|
||||
|
||||
-- 🧠 Pokud AI podporuje doplňování, použije AI místo inline návrhů
|
||||
vim.g.ai_cmp = true
|
||||
|
||||
-- 📂 Jak Neovim detekuje kořenový adresář projektu
|
||||
vim.g.root_spec = { "lsp", { ".git", "lua" }, "cwd" }
|
||||
-- 1️⃣ LSP (pokud běží jazykový server)
|
||||
-- 2️⃣ `.git` složka
|
||||
-- 3️⃣ Složky obsahující `lua`
|
||||
-- 4️⃣ Pokud nic nenajde, použije aktuální složku (`cwd`)
|
||||
|
||||
-- 🖥️ Použití terminálu (můžeš změnit na "bash", "zsh", "pwsh" atd.)
|
||||
-- LazyVim.terminal.setup("pwsh")
|
||||
|
||||
-- 🚫 Ignorovat některé LSP servery (např. Copilot)
|
||||
vim.g.root_lsp_ignore = { "copilot" }
|
||||
|
||||
-- 🚨 Skrýt varování o zastaralých funkcích v LazyVim
|
||||
vim.g.deprecation_warnings = false -- Pokud chceš varování, změň na `true`
|
||||
|
||||
-- 📌 Zobrazit pozici v dokumentu (Trouble) v lualine (stavovém řádku)
|
||||
vim.g.trouble_lualine = true -- Pokud nechceš, změň na `false`
|
||||
|
||||
-- 🔧 Hlavní nastavení editoru (vim.opt)
|
||||
local opt = vim.opt
|
||||
|
||||
-- 📜 Automatické ukládání souboru při přepnutí okna
|
||||
opt.autowrite = true
|
||||
|
||||
-- 📋 Synchronizace schránky s OS (pokud nejsi v SSH)
|
||||
opt.clipboard = vim.env.SSH_TTY and "" or "unnamedplus"
|
||||
|
||||
-- 🖱️ Povolení myši v Neovimu
|
||||
opt.mouse = "a"
|
||||
|
||||
-- 🔤 Možnosti doplňování v menu
|
||||
opt.completeopt = "menu,menuone,noselect"
|
||||
|
||||
-- 🔍 Ignorovat velikost písmen při hledání
|
||||
opt.ignorecase = true
|
||||
opt.smartcase = true -- Pokud napíšeš velké písmeno, bude hledání case-sensitive
|
||||
|
||||
-- 🔄 Náhled substitucí při hledání a nahrazování
|
||||
opt.inccommand = "nosplit"
|
||||
|
||||
-- 📏 Zobrazení čísel řádků
|
||||
opt.number = true -- Zapnout čísla řádků
|
||||
opt.relativenumber = true -- Relativní čísla řádků
|
||||
|
||||
-- 📌 Lepší zalamování řádků
|
||||
opt.linebreak = true
|
||||
opt.wrap = false -- Pokud chceš zalamovat řádky, změň na `true`
|
||||
|
||||
-- ⏳ Zpoždění před spuštěním příkazů (např. WhichKey)
|
||||
opt.timeoutlen = 300
|
||||
|
||||
-- 🎨 Povolit 24bitové barvy v terminálu
|
||||
opt.termguicolors = true
|
||||
|
||||
-- 📜 Odsazování a formátování
|
||||
opt.expandtab = true -- Používat mezery místo tabulátorů
|
||||
opt.tabstop = 2 -- Tabulátor bude odpovídat 2 mezerám
|
||||
opt.shiftwidth = 2 -- Automatické odsazení bude 2 mezery
|
||||
opt.smartindent = true -- Automatické odsazování podle kódu
|
||||
|
||||
-- 🏎️ Rychlost editoru
|
||||
opt.updatetime = 200 -- Jak často se ukládají změny
|
||||
opt.undolevels = 10000 -- Počet kroků pro vrácení změn
|
||||
opt.undofile = true -- Povolit historii změn i po restartu
|
||||
|
||||
-- 🔍 Nastavení hledání
|
||||
opt.grepprg = "rg --vimgrep" -- Používat ripgrep (`rg`) místo grep
|
||||
opt.grepformat = "%f:%l:%c:%m"
|
||||
|
||||
-- 📂 Možnosti session (uložené pracovní prostředí)
|
||||
opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize", "help", "globals", "skiprtp", "folds" }
|
||||
|
||||
-- 📌 Lepší skládání kódu (folding)
|
||||
opt.foldlevel = 99 -- Kód je ve výchozím stavu rozbalený
|
||||
opt.foldmethod = "expr"
|
||||
opt.foldexpr = "v:lua.require'lazyvim.util'.ui.foldexpr()"
|
||||
|
||||
-- 📜 Zobrazení skrytých znaků
|
||||
opt.list = true
|
||||
|
||||
-- 📌 Stavový řádek a boční sloupec
|
||||
opt.signcolumn = "yes" -- Vždy zobrazit sloupec se značkami (např. LSP chyby)
|
||||
opt.laststatus = 3 -- Globální status bar
|
||||
|
||||
-- 📌 Automatické skrolování při pohybu kurzorem
|
||||
opt.scrolloff = 4 -- Vždy zobrazit 4 řádky nad/pod kurzorem
|
||||
opt.sidescrolloff = 8 -- Vždy zobrazit 8 sloupců vlevo/vpravo
|
||||
|
||||
-- 📂 Nastavení rozdělení oken
|
||||
opt.splitbelow = true -- Nová okna se otevírají pod aktuálním
|
||||
opt.splitright = true -- Nová okna se otevírají napravo
|
||||
|
||||
-- ✍️ Automatické doplňování uvozovek, závorek a HTML tagů
|
||||
opt.formatoptions = "jcroqlnt" -- Lepší formátování textu
|
||||
opt.formatexpr = "v:lua.require'lazyvim.util'.format.formatexpr()"
|
||||
|
||||
-- 📌 Markdown konfigurace
|
||||
vim.g.markdown_recommended_style = 0 -- Oprava odsazení v Markdownu
|
||||
|
||||
-- 🏁 Pokud máš Neovim 0.10+, povol smooth scrolling
|
||||
if vim.fn.has("nvim-0.10") == 1 then
|
||||
opt.smoothscroll = true
|
||||
opt.foldexpr = "v:lua.require'lazyvim.util'.ui.foldexpr()"
|
||||
opt.foldmethod = "expr"
|
||||
opt.foldtext = ""
|
||||
else
|
||||
opt.foldmethod = "indent"
|
||||
opt.foldtext = "v:lua.require'lazyvim.util'.ui.foldtext()"
|
||||
end
|
197
lua/plugins/example.lua
Normal file
197
lua/plugins/example.lua
Normal file
@ -0,0 +1,197 @@
|
||||
-- since this is just an example spec, don't actually load anything here and return an empty spec
|
||||
-- stylua: ignore
|
||||
if true then return {} end
|
||||
|
||||
-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim
|
||||
--
|
||||
-- In your plugin files, you can:
|
||||
-- * add extra plugins
|
||||
-- * disable/enabled LazyVim plugins
|
||||
-- * override the configuration of LazyVim plugins
|
||||
return {
|
||||
-- add gruvbox
|
||||
{ "ellisonleao/gruvbox.nvim" },
|
||||
|
||||
-- Configure LazyVim to load gruvbox
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "gruvbox",
|
||||
},
|
||||
},
|
||||
|
||||
-- change trouble config
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
-- opts will be merged with the parent spec
|
||||
opts = { use_diagnostic_signs = true },
|
||||
},
|
||||
|
||||
-- disable trouble
|
||||
{ "folke/trouble.nvim", enabled = false },
|
||||
|
||||
-- override nvim-cmp and add cmp-emoji
|
||||
{
|
||||
"hrsh7th/nvim-cmp",
|
||||
dependencies = { "hrsh7th/cmp-emoji" },
|
||||
---@param opts cmp.ConfigSchema
|
||||
opts = function(_, opts)
|
||||
table.insert(opts.sources, { name = "emoji" })
|
||||
end,
|
||||
},
|
||||
|
||||
-- change some telescope options and a keymap to browse plugin files
|
||||
{
|
||||
"nvim-telescope/telescope.nvim",
|
||||
keys = {
|
||||
-- add a keymap to browse plugin files
|
||||
-- stylua: ignore
|
||||
{
|
||||
"<leader>fp",
|
||||
function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root }) end,
|
||||
desc = "Find Plugin File",
|
||||
},
|
||||
},
|
||||
-- change some options
|
||||
opts = {
|
||||
defaults = {
|
||||
layout_strategy = "horizontal",
|
||||
layout_config = { prompt_position = "top" },
|
||||
sorting_strategy = "ascending",
|
||||
winblend = 0,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- add pyright to lspconfig
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
---@class PluginLspOpts
|
||||
opts = {
|
||||
---@type lspconfig.options
|
||||
servers = {
|
||||
-- pyright will be automatically installed with mason and loaded with lspconfig
|
||||
pyright = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- add tsserver and setup with typescript.nvim instead of lspconfig
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
"jose-elias-alvarez/typescript.nvim",
|
||||
init = function()
|
||||
require("lazyvim.util").lsp.on_attach(function(_, buffer)
|
||||
-- stylua: ignore
|
||||
vim.keymap.set( "n", "<leader>co", "TypescriptOrganizeImports", { buffer = buffer, desc = "Organize Imports" })
|
||||
vim.keymap.set("n", "<leader>cR", "TypescriptRenameFile", { desc = "Rename File", buffer = buffer })
|
||||
end)
|
||||
end,
|
||||
},
|
||||
---@class PluginLspOpts
|
||||
opts = {
|
||||
---@type lspconfig.options
|
||||
servers = {
|
||||
-- tsserver will be automatically installed with mason and loaded with lspconfig
|
||||
tsserver = {},
|
||||
},
|
||||
-- you can do any additional lsp server setup here
|
||||
-- return true if you don't want this server to be setup with lspconfig
|
||||
---@type table<string, fun(server:string, opts:_.lspconfig.options):boolean?>
|
||||
setup = {
|
||||
-- example to setup with typescript.nvim
|
||||
tsserver = function(_, opts)
|
||||
require("typescript").setup({ server = opts })
|
||||
return true
|
||||
end,
|
||||
-- Specify * to use this function as a fallback for any server
|
||||
-- ["*"] = function(server, opts) end,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- for typescript, LazyVim also includes extra specs to properly setup lspconfig,
|
||||
-- treesitter, mason and typescript.nvim. So instead of the above, you can use:
|
||||
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
||||
|
||||
-- add more treesitter parsers
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"html",
|
||||
"javascript",
|
||||
"json",
|
||||
"lua",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"python",
|
||||
"query",
|
||||
"regex",
|
||||
"tsx",
|
||||
"typescript",
|
||||
"vim",
|
||||
"yaml",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- since `vim.tbl_deep_extend`, can only merge tables and not lists, the code above
|
||||
-- would overwrite `ensure_installed` with the new value.
|
||||
-- If you'd rather extend the default config, use the code below instead:
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = function(_, opts)
|
||||
-- add tsx and treesitter
|
||||
vim.list_extend(opts.ensure_installed, {
|
||||
"tsx",
|
||||
"typescript",
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- the opts function can also be used to change the default opts:
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = function(_, opts)
|
||||
table.insert(opts.sections.lualine_x, {
|
||||
function()
|
||||
return "😄"
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- or you can return new options to override all the defaults
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = function()
|
||||
return {
|
||||
--[[add your custom lualine config here]]
|
||||
}
|
||||
end,
|
||||
},
|
||||
|
||||
-- use mini.starter instead of alpha
|
||||
{ import = "lazyvim.plugins.extras.ui.mini-starter" },
|
||||
|
||||
-- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc
|
||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
||||
|
||||
-- add any tools you want to have installed below
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
"stylua",
|
||||
"shellcheck",
|
||||
"shfmt",
|
||||
"flake8",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user