dotfiles/neovim/init.lua

584 lines
19 KiB
Lua
Raw Normal View History

2022-08-16 01:59:31 +00:00
-- What: Mono-file nvim configuration file
-- Why: Easy to see through everything without needing to navigate thru files
-- Features:
-- - LSP
-- - Auto-complete (in insert mode: ctrl-space, navigate w/ Tab+S-Tab, confirm: Enter)
-- - <leader>df to format document
-- - Harpoon marks: Navigate through main files within each project
2022-09-07 06:06:13 +00:00
--
-- REQUIREMENTS:
-- - zk @ https://github.com/mickael-menu/zk
-- - prettierd @ npm install -g @fsouza/prettierd
2022-08-16 01:59:31 +00:00
2022-08-14 08:57:04 +00:00
-- Basic settings of vim
2022-08-14 07:48:17 +00:00
vim.cmd([[
set number relativenumber
set tabstop=4 softtabstop=4
set expandtab
set shiftwidth=4
2022-08-14 08:57:04 +00:00
set smartindent
2022-08-14 07:48:17 +00:00
set exrc
2022-08-14 08:57:04 +00:00
set incsearch
2022-08-15 06:45:08 +00:00
set scrolloff=15
2022-08-14 08:57:04 +00:00
set signcolumn=yes
set colorcolumn=80
2022-08-16 04:59:49 +00:00
set background=light
2022-08-14 08:57:04 +00:00
]])
2022-08-16 04:59:49 +00:00
vim.opt.lazyredraw = true
2022-08-14 08:57:04 +00:00
vim.opt.termguicolors = true
2022-08-16 01:59:31 +00:00
vim.opt.cursorline = true
2022-08-15 06:45:08 +00:00
-- some plugins misbehave when we do swap files
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true
vim.opt.completeopt = 'menuone,noselect'
-- vim.opt.clipboard = "unnamedplus"
2022-08-16 01:59:31 +00:00
2022-08-15 06:45:08 +00:00
vim.g.mapleader = ' '
-- basic keymaps
2022-08-15 09:05:14 +00:00
vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true }) -- since we're using space for leader
vim.keymap.set('t', '<Esc>', '<C-\\><C-n>)') -- make :terminal escape out
vim.keymap.set({ 'n', 'i', 'v' }, '<c-l>', '<Cmd>:mode<Cr>') -- redraw on every mode
2022-08-15 06:45:08 +00:00
-- diagnostics (errors/warnings to be shown)
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev)
vim.keymap.set('n', ']d', vim.diagnostic.goto_next)
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float) -- opens diag in box (floating)
-- vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist) -- opens list of diags
-- vim.keymap.set('n', '<leader>wq', vim.diagnostic.setqflist) -- workspace diags
vim.keymap.set('n', '<leader>q', '<cmd>TroubleToggle loclist<cr>')
vim.keymap.set('n', '<leader>wq', '<cmd>TroubleToggle workspace_diagnostics<cr>')
2022-08-15 06:45:08 +00:00
2022-08-14 07:48:17 +00:00
2022-08-14 08:57:04 +00:00
-- vim-plug
vim.cmd([[
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
if empty(glob(data_dir . '/autoload/plug.vim'))
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
2022-08-14 08:57:04 +00:00
endif
2022-08-14 07:48:17 +00:00
]])
2022-08-14 08:57:04 +00:00
local Plug = vim.fn['plug#']
vim.call('plug#begin', '~/.config/nvim/plugged')
2022-08-15 06:45:08 +00:00
-- libs and dependencies
2022-08-14 08:57:04 +00:00
Plug('nvim-lua/plenary.nvim')
2022-08-15 06:45:08 +00:00
2022-08-15 09:05:14 +00:00
-- plugins
2022-08-16 01:59:31 +00:00
Plug('nvim-treesitter/nvim-treesitter') -- language parser engine for highlighting
2022-08-15 06:45:08 +00:00
Plug('nvim-treesitter/nvim-treesitter-textobjects') -- more text objects
2022-08-15 09:05:14 +00:00
Plug('nvim-telescope/telescope.nvim', { tag = '0.1.0' }) -- file browser
Plug('nvim-telescope/telescope-fzf-native.nvim',
{ ['do'] = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=release && cmake --build build --config Release && cmake --install build --prefix build' })
Plug('nvim-telescope/telescope-file-browser.nvim')
2022-08-15 06:45:08 +00:00
-- cmp: auto-complete/suggestions
Plug('neovim/nvim-lspconfig') -- built-in LSP configurations
Plug('hrsh7th/cmp-nvim-lsp')
Plug('hrsh7th/cmp-buffer')
Plug('hrsh7th/nvim-cmp')
Plug('onsails/lspkind-nvim')
2022-08-15 06:45:08 +00:00
-- DevExp
Plug('windwp/nvim-autopairs') -- matches pairs like [] (),...
Plug('windwp/nvim-ts-autotag') -- matches tags <body>hello</body>
2022-09-02 14:00:54 +00:00
Plug('NMAC427/guess-indent.nvim') -- guesses the indentation of an opened buffer
2022-08-15 09:05:14 +00:00
Plug('numToStr/Comment.nvim') -- "gc" to comment visual regions/lines
2022-08-15 06:45:08 +00:00
Plug('lewis6991/gitsigns.nvim') -- add git info to sign columns
Plug('tpope/vim-fugitive') -- git commands in nvim
2022-08-15 09:05:14 +00:00
Plug('williamboman/mason.nvim') -- LSP, debuggers,... package manager
Plug('williamboman/mason-lspconfig.nvim') -- lsp config for mason
2022-08-16 04:59:49 +00:00
Plug('ThePrimeagen/harpoon') -- 1-click through marked files per project
2022-09-24 06:03:47 +00:00
Plug('TimUntersberger/neogit') -- Easy-to-see git status
Plug('folke/trouble.nvim') -- File-grouped workspace diagnostics
2022-08-15 06:45:08 +00:00
-- UI & colorscheme
Plug('gruvbox-community/gruvbox') -- theme provider
2022-08-15 06:45:08 +00:00
Plug('nvim-lualine/lualine.nvim') -- fancy status line
Plug('lukas-reineke/indent-blankline.nvim') -- identation lines on blank lines
Plug('sunjon/shade.nvim') -- make inactive panes have lower opacity
Plug('kyazdani42/nvim-web-devicons') -- icons for folder and filetypes
Plug('m-demare/hlargs.nvim') -- highlights arguments; great for func prog
Plug('folke/todo-comments.nvim') -- Highlights TODO
2022-08-15 06:45:08 +00:00
-- other utilities
2022-08-15 09:05:14 +00:00
Plug('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })
Plug('saadparwaiz1/cmp_luasnip') -- snippet engine
Plug('L3MON4D3/LuaSnip') -- snippet engine
Plug('mickael-menu/zk-nvim') -- Zettelkasten
2022-08-15 06:45:08 +00:00
---------
2022-08-14 08:57:04 +00:00
vim.call('plug#end')
2022-08-15 06:45:08 +00:00
-- color, highlighting, UI stuffs
vim.cmd([[ colorscheme gruvbox ]])
2022-09-12 23:20:01 +00:00
require('hlargs').setup()
require('shade').setup {
overlay_opacity = 60,
opacity_step = 1,
keys = {
brightness_up = '<C-Up>',
2022-09-12 23:20:01 +00:00
brightness_down = '<C-Down>',
toggle = '<Leader>s', -- s: sha
}
}
require('nvim-web-devicons').setup()
require('trouble').setup()
require('todo-comments').setup()
2022-08-14 08:57:04 +00:00
2022-08-15 06:45:08 +00:00
-- plugin keymaps
2022-09-12 23:20:01 +00:00
2022-08-15 09:05:14 +00:00
local function remap(mode, key_cmd, binded_fn, opts)
2022-09-12 23:20:01 +00:00
opts = opts or { remap = true }
return vim.keymap.set(mode, key_cmd, binded_fn, opts)
2022-08-15 06:45:08 +00:00
end
2022-08-15 09:05:14 +00:00
2022-08-15 06:45:08 +00:00
-- Comment.nvim
require('Comment').setup()
-- lukas-reineke/indent-blankline.nvim
2022-08-16 01:59:31 +00:00
vim.opt.list = true
vim.opt.listchars:append "space:⋅"
vim.opt.listchars:append "eol:↴"
require("indent_blankline").setup {
2022-09-12 23:20:01 +00:00
show_end_of_line = true,
space_char_blankline = " ",
2022-08-15 06:45:08 +00:00
}
-- User command that transform into 2-spaces by translating to tabstop
vim.api.nvim_create_user_command(
'HalfSpaces',
function(opts)
vim.api.nvim_command("set ts=2 sts=2 noet")
vim.api.nvim_command("retab!")
vim.api.nvim_command("set ts=1 sts=1 et")
vim.api.nvim_command("retab")
vim.api.nvim_command("GuessIndent")
end,
{ nargs = 0 }
)
vim.api.nvim_create_user_command(
'DoubleSpaces',
function(opts)
vim.api.nvim_command("set ts=1 sts=1 noet")
vim.api.nvim_command("retab!")
vim.api.nvim_command("set ts=2 sts=2 et")
vim.api.nvim_command("retab")
vim.api.nvim_command("GuessIndent")
end,
{ nargs = 0 }
)
2022-08-15 06:45:08 +00:00
-- telescope
local fb_actions = require "telescope".extensions.file_browser.actions
2022-08-15 06:45:08 +00:00
require('telescope').setup {
2022-09-12 23:20:01 +00:00
defaults = {
mappings = {
i = {
['<C-u>'] = false,
['<C-d>'] = false,
},
},
2022-09-02 14:00:54 +00:00
},
2022-09-12 23:20:01 +00:00
extensions = {
fzf = {
fuzzy = true, -- allow fuzzy matches
override_generic_sorter = true,
override_file_sorter = true,
case_mode = 'smart_case'
},
file_browser = {
theme = "ivy",
hiject_netrw = true, -- disables netrw and use file-browser instead
mappings = {
["i"] = {}, -- disable any shortcut in insert mode for now
["n"] = {
["c"] = fb_actions.create,
["r"] = fb_actions.rename,
["m"] = fb_actions.move,
["y"] = fb_actions.copy,
["d"] = fb_actions.remove,
["o"] = fb_actions.open,
["g"] = fb_actions.goto_parent_dir,
["e"] = fb_actions.goto_home_dir,
["w"] = fb_actions.goto_cwd,
["t"] = fb_actions.change_cwd,
["f"] = fb_actions.toggle_browser,
["h"] = fb_actions.toggle_hidden,
["s"] = fb_actions.toggle_all,
}
}
}
2022-08-15 06:45:08 +00:00
}
}
2022-09-07 06:06:13 +00:00
-- Telescope key remap stuffs
2022-08-15 06:45:08 +00:00
pcall(require('telescope').load_extension, 'fzf')
pcall(require('telescope').load_extension, 'file_browser')
2022-08-15 09:05:14 +00:00
remap('n', '<C-p>', '<cmd>Telescope<cr>', { desc = 'Open Telescope general search' })
remap('n', '<leader>fm', function()
2022-09-12 23:20:01 +00:00
require("telescope").extensions.file_browser.file_browser()
end, { desc = '[F]ile [M]utation' })
2022-08-15 09:05:14 +00:00
remap('n', '<leader>ff', function()
2022-09-12 23:20:01 +00:00
require('telescope.builtin').find_files({
hidden = false,
no_ignore = false,
follow = false,
})
end, { desc = '[F]ind [F]ile' })
remap('n', '<leader>fa', function()
2022-09-12 23:20:01 +00:00
require('telescope.builtin').find_files({
hidden = true,
no_ignore = true,
follow = true,
})
end, { desc = '[F]ind [A]ll files' })
2022-08-15 09:05:14 +00:00
remap('n', '<leader>fg', function()
2022-09-12 23:20:01 +00:00
require('telescope.builtin').live_grep()
2022-08-15 09:05:14 +00:00
end, { desc = '[F]ind by [G]rep' })
2022-08-15 09:05:14 +00:00
remap('n', '<leader>fb', function()
2022-09-12 23:20:01 +00:00
require('telescope.builtin').buffers()
2022-08-15 09:05:14 +00:00
end, { desc = '[F]ind existing [B]uffers' })
2022-08-15 09:05:14 +00:00
remap('n', '<leader>fh', function()
2022-09-12 23:20:01 +00:00
require('telescope.builtin').help_tags()
2022-08-15 09:05:14 +00:00
end, { desc = '[F]ind [H]elp' })
2022-08-15 09:05:14 +00:00
remap('n', '<leader>fd', function()
2022-09-12 23:20:01 +00:00
require('telescope.builtin').diagnostics()
2022-08-15 09:05:14 +00:00
end, { desc = '[F]ind [D]iagnostics' })
2022-09-07 06:06:13 +00:00
-- ZK remap stuffs
remap('n', '<leader>zf', function()
2022-09-12 23:20:01 +00:00
vim.cmd([[:ZkNotes]])
2022-09-07 06:06:13 +00:00
end, { desc = '[Z]ettelkasten [F]iles' })
remap('n', '<leader>zg', function()
2022-09-12 23:20:01 +00:00
vim.cmd([[:ZkGrep]])
2022-09-07 06:06:13 +00:00
end, { desc = '[Z]ettelkasten [G]rep' })
2022-08-15 06:45:08 +00:00
-- treesitter
require('nvim-treesitter.configs').setup {
2022-09-12 23:20:01 +00:00
ensure_installed = {
'tsx', 'toml', 'lua', 'typescript', 'rust', 'go', 'yaml', 'json', 'php', 'css',
'python', 'prisma', 'html', "dockerfile", "c", "cpp",
},
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
incremental_selection = {
enable = true,
keymaps = {
init_selection = '<c-space>',
node_incremental = '<c-space>',
node_decremental = '<c-backspace>',
scope_incremental = '<c-S>'
}
},
textobjects = {
select = {
enable = true,
lookahead = true,
keymaps = {
['af'] = '@function.outer',
['if'] = '@function.inner',
['ac'] = '@class.outer',
['ic'] = '@class.inner',
},
},
},
-- automatically close and modify HTML and TSX tags
autotag = {
enable = true,
2022-08-15 06:45:08 +00:00
},
}
require('nvim-autopairs').setup {
2022-09-12 23:20:01 +00:00
check_ts = true,
2022-09-02 14:00:54 +00:00
}
2022-09-07 06:06:13 +00:00
local parser_config = require('nvim-treesitter.parsers').get_parser_configs()
2022-09-12 23:20:01 +00:00
parser_config.tsx.filetype_to_parsername = { "javascript", "typescript.tsx" }
2022-09-07 06:06:13 +00:00
2022-09-02 14:00:54 +00:00
require('guess-indent').setup {
2022-09-12 23:20:01 +00:00
auto_cmd = true, -- Set to false to disable automatic execution
filetype_exclude = { -- A list of filetypes for which the auto command gets disabled
"netrw",
"tutor",
},
buftype_exclude = { -- A list of buffer types for which the auto command gets disabled
"help",
"nofile",
"terminal",
"prompt",
},
}
-- harpoon: mark significant files & switch between them
remap('n', '<leader>m', function() require('harpoon.mark').add_file() end)
local function harpoon_nav(key, nav_file_index, lead_keybind)
2022-09-12 23:20:01 +00:00
lead_keybind = lead_keybind or '<leader>h'
assert(type(key) == "string", "expect key to be string(keybind)")
assert(type(nav_file_index) == "number" and nav_file_index >= 1, "expect 1-indexed number for file index")
return remap('n', lead_keybind .. key, function() require('harpoon.ui').nav_file(nav_file_index) end)
end
-- remap letters to index. Inspired by alternating number of Dvorak programmer
-- best practices: try to keep marked files to be around 4
harpoon_nav('f', 1)
harpoon_nav('j', 2)
harpoon_nav('d', 3)
harpoon_nav('k', 4)
remap('n', '<leader>hh', function() require('harpoon.ui').toggle_quick_menu() end)
-- harpoon: navigate by numbers
harpoon_nav('1', 1)
harpoon_nav('2', 2)
harpoon_nav('3', 3)
harpoon_nav('4', 4)
harpoon_nav('5', 5)
harpoon_nav('6', 6)
harpoon_nav('7', 7)
harpoon_nav('8', 8)
harpoon_nav('9', 9)
harpoon_nav('0', 10)
2022-08-15 06:45:08 +00:00
2022-09-24 06:03:47 +00:00
-- neogit: easy-to-see git status
require('neogit').setup {}
remap('n', '<leader>gs', function() require('neogit').open({}) end);
2022-08-15 09:05:14 +00:00
-- LSP settings
2022-09-24 06:03:47 +00:00
require('nvim-lsp-installer').setup {}
-- This function gets run when an LSP connects to a particular buffer.
local on_attach = function(_client, bufnr)
2022-09-12 23:20:01 +00:00
-- NOTE: Remember that lua is a real programming language, and as such it is possible
-- to define small helper and utility functions so you don't have to repeat yourself
-- many times.
--
-- In this case, we create a function that lets us more easily define mappings specific
-- for LSP related items. It sets the mode, buffer and description for us each time.
local nmap = function(keys, func, desc)
if desc then
desc = 'LSP: ' .. desc
end
vim.keymap.set('n', keys, func, { noremap = true, buffer = bufnr, desc = desc })
2022-08-15 09:05:14 +00:00
end
2022-09-12 23:20:01 +00:00
nmap('<leader>rn', vim.lsp.buf.rename, '[R]e[n]ame')
nmap('<leader>ca', vim.lsp.buf.code_action, '[C]ode [A]ction')
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
nmap('<leader>df', function() vim.lsp.buf.format({ async = true }) end, '[D]ocument [F]ormat')
2022-09-12 23:20:01 +00:00
-- symbols and gotos
nmap('gd', vim.lsp.buf.definition, '[G]oto [D]efinition')
nmap('gi', vim.lsp.buf.implementation, '[G]oto [I]mplementation')
nmap('gr', require('telescope.builtin').lsp_references)
nmap('<leader>ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols')
nmap('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols')
-- documentations. See `:help K` for why this keymap
nmap('K', vim.lsp.buf.hover, 'Hover Documentation')
nmap('<C-k>', vim.lsp.buf.signature_help, 'Signature Documentation')
-- Lesser used LSP functionality
nmap('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration')
nmap('<leader>D', vim.lsp.buf.type_definition, 'Type [D]efinition')
nmap('<leader>wa', vim.lsp.buf.add_workspace_folder, '[W]orkspace [A]dd Folder')
2022-09-12 23:20:01 +00:00
nmap('<leader>wr', vim.lsp.buf.remove_workspace_folder, '[W]orkspace [R]emove Folder')
nmap('<leader>wl', function()
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
end, '[W]orkspace [L]ist Folders')
2022-08-15 09:05:14 +00:00
end
-- nvim-cmp supports additional completion capabilities
local capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
-- default language servers
local servers = { 'clangd', 'rust_analyzer', 'pyright', 'tsserver', 'sumneko_lua', 'cmake', 'tailwindcss', 'prismals',
'rnix', 'eslint' }
2022-08-15 09:05:14 +00:00
require("mason").setup({
2022-09-12 23:20:01 +00:00
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
}
2022-08-15 09:05:14 +00:00
}
})
require('mason-lspconfig').setup({
2022-09-12 23:20:01 +00:00
ensure_installed = servers,
automatic_installation = true
2022-08-15 09:05:14 +00:00
})
2022-08-16 01:59:31 +00:00
require('mason-lspconfig').setup_handlers({
2022-09-12 23:20:01 +00:00
-- default handler
function(server_name)
require('lspconfig')[server_name].setup {
on_attach = on_attach,
capabilities = capabilities,
}
2022-09-12 23:20:01 +00:00
end,
["sumneko_lua"] = function()
require('lspconfig').sumneko_lua.setup {
on_attach = on_attach,
capabilities = capabilities,
settings = {
Lua = {
runtime = {
version = "LuaJIT",
path = vim.split(package.path, ";"),
},
diagnostics = {
globals = { "vim" }
},
workspace = {
library = vim.api.nvim_get_runtime_file('', true)
},
telemetry = { enable = false },
format = {
enable = true,
defaultConfig = {
indent_style = "space",
indent_size = 2,
}
}
2022-09-12 23:20:01 +00:00
}
}
}
end
2022-08-16 01:59:31 +00:00
})
2022-08-31 05:41:56 +00:00
require('zk').setup({
2022-09-12 23:20:01 +00:00
picker = "telescope",
lsp = {
config = {
cmd = { "zk", "lsp" },
name = "zk",
on_attach = on_attach,
},
auto_attach = {
enable = true,
filetypes = { "markdown" }
},
2022-08-31 05:41:56 +00:00
},
})
2022-08-16 01:59:31 +00:00
-- Custom ZkOrphans that determines unlinked notes
-- `:ZkOrphans {tags = {"work"}}`
require('zk.commands').add("ZkOrphans", function(options)
2022-09-12 23:20:01 +00:00
options = vim.tbl_extend("force", { orphan = true }, options or {})
-- zk.edit opens notes picker
require('zk').edit(options, { title = "Zk Orphans (unlinked notes)" })
end)
-- ZkGrep: opens file picker
-- In the case where `match_ctor` is falsy, create a prompt.
-- This is so that we distinguish between ZkGrep and ZkNotes
-- Params:
-- match_ctor: string | {match= :string,...} | "" | nil
require('zk.commands').add("ZkGrep", function(match_ctor)
2022-09-12 23:20:01 +00:00
-- handle polymorphic `match_ctor`
local grep_str = match_ctor
local match
if match_ctor == nil or match_ctor == '' then
vim.fn.inputsave()
grep_str = vim.fn.input('Grep string: >')
vim.fn.inputrestore()
match = { match = grep_str }
elseif type(match_ctor) == 'string' then
match = { match = grep_str }
end
require('zk').edit(match, { title = "Grep: '" .. grep_str .. "'" })
end)
2022-08-15 09:05:14 +00:00
-- nvim-cmp
local cmp = require 'cmp'
local luasnip = require 'luasnip'
cmp.setup {
2022-09-12 23:20:01 +00:00
snippet = {
expand = function(args)
luasnip.lsp_expand(args.body)
end,
},
mapping = cmp.mapping.preset.insert {
['<C-u>'] = cmp.mapping.scroll_docs(-4),
['<C-d>'] = cmp.mapping.scroll_docs(4),
['<C-Space>'] = cmp.mapping.complete(),
['<CR>'] = cmp.mapping.confirm {
behavior = cmp.ConfirmBehavior.Replace,
select = true,
},
['<Tab>'] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
else
fallback()
end
end, { 'i', 's' }),
['<S-Tab>'] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_prev_item()
elseif luasnip.jumpable(-1) then
luasnip.jump(-1)
else
fallback()
end
end, { 'i', 's' }),
},
sources = {
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
},
2022-08-15 09:05:14 +00:00
}
-- Gitsigns
require('gitsigns').setup {
2022-09-12 23:20:01 +00:00
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
}
2022-08-15 09:05:14 +00:00
}
require('lualine').setup {
2022-09-12 23:20:01 +00:00
options = {
icons_enabled = true,
},
2022-09-24 06:03:47 +00:00
sections = {
lualine_a = { 'mode' },
lualine_b = { 'branch', 'diff', 'diagnostics' },
lualine_c = {
{ 'filename',
2022-09-24 06:03:47 +00:00
file_status = true,
newfile_status = false,
path = 1,
symbols = {
modified = '[+]',
readonly = '[-]',
unnamed = '[Unnamed]',
newfile = '[New]',
},
},
},
lualine_x = { 'encoding', 'fileformat', 'filetype', },
2022-09-24 06:03:47 +00:00
lualine_y = { 'progress' },
lualine_z = { 'location' },
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = { { 'filename', path = 1, file_status = true, }, },
2022-09-24 06:03:47 +00:00
lualine_x = { 'location' },
lualine_y = {},
lualine_z = {},
}
2022-08-15 09:05:14 +00:00
}