chore(nvim): remove unused configuration
This commit is contained in:
parent
ec344fd4f5
commit
028c69bccf
|
@ -1,6 +0,0 @@
|
||||||
local status_ok, fidget = pcall(require, "fidget")
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
fidget.setup {}
|
|
|
@ -1,4 +0,0 @@
|
||||||
vim.g.floaterm_autoinsert = 1
|
|
||||||
vim.g.floaterm_height = 0.8
|
|
||||||
vim.g.floaterm_title = 0
|
|
||||||
vim.g.floaterm_width = 0.8
|
|
|
@ -1,30 +0,0 @@
|
||||||
local status_ok, neogit = pcall(require, "neogit")
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
neogit.setup {
|
|
||||||
disable_commit_confirmation = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
local nmap = require("opdavies.keymap").nmap
|
|
||||||
|
|
||||||
nmap {
|
|
||||||
"<leader>gc",
|
|
||||||
function()
|
|
||||||
neogit.open { "commit" }
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
nmap {
|
|
||||||
"<leader>gl",
|
|
||||||
function()
|
|
||||||
neogit.open { "log" }
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
nmap {
|
|
||||||
"<leader>gp",
|
|
||||||
function()
|
|
||||||
neogit.open { "push" }
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
nmap { "<leader>gs", neogit.open }
|
|
|
@ -1 +0,0 @@
|
||||||
vim.g.mkdp_refresh_slow = 1
|
|
|
@ -1,6 +0,0 @@
|
||||||
local has_lastplace, lastplace = pcall(require, "nvim-lastplace")
|
|
||||||
if not has_lastplace then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
lastplace.setup {}
|
|
|
@ -1,3 +0,0 @@
|
||||||
-- vim.g.seiya_auto_enable = 1
|
|
||||||
|
|
||||||
-- vim.g.seiya_target_groups = { "guibg" }
|
|
|
@ -1,81 +0,0 @@
|
||||||
local status_ok, el = pcall(require, "el")
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local builtin = require "el.builtin"
|
|
||||||
local diagnostic = require "el.diagnostic"
|
|
||||||
local extensions = require "el.extensions"
|
|
||||||
local lsp_statusline = require "el.plugins.lsp_status"
|
|
||||||
local sections = require "el.sections"
|
|
||||||
local subscribe = require "el.subscribe"
|
|
||||||
|
|
||||||
local file_icon = subscribe.buf_autocmd("el_file_icon", "BufRead", function(_, buffer)
|
|
||||||
return extensions.file_icon(_, buffer)
|
|
||||||
end)
|
|
||||||
|
|
||||||
local git_branch = subscribe.buf_autocmd("el_git_branch", "BufEnter", function(window, buffer)
|
|
||||||
local branch = extensions.git_branch(window, buffer)
|
|
||||||
if branch then
|
|
||||||
return " " .. extensions.git_icon() .. " " .. branch
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
local git_changes = subscribe.buf_autocmd("el_git_changes", "BufWritePost", function(window, buffer)
|
|
||||||
return extensions.git_changes(window, buffer)
|
|
||||||
end)
|
|
||||||
|
|
||||||
local show_current_func = function(window, buffer)
|
|
||||||
if buffer.filetype == "lua" then
|
|
||||||
return ""
|
|
||||||
end
|
|
||||||
|
|
||||||
return lsp_statusline.current_function(window, buffer)
|
|
||||||
end
|
|
||||||
|
|
||||||
local diagnostic_display = diagnostic.make_buffer()
|
|
||||||
|
|
||||||
el.setup {
|
|
||||||
generator = function(window, buffer)
|
|
||||||
local mode = extensions.gen_mode { format_string = " %s " }
|
|
||||||
|
|
||||||
local items = {
|
|
||||||
{ mode },
|
|
||||||
{ git_branch },
|
|
||||||
{ sections.split },
|
|
||||||
{ file_icon },
|
|
||||||
{ " " },
|
|
||||||
{ sections.maximum_width(builtin.make_responsive_file(140, 90), 0.40) },
|
|
||||||
{ sections.collapse_builtin { { " " }, { builtin.modified_flag } } },
|
|
||||||
{ sections.split },
|
|
||||||
{ diagnostic_display },
|
|
||||||
{ show_current_func },
|
|
||||||
{ git_changes },
|
|
||||||
{ "[" },
|
|
||||||
{ builtin.line_with_width(3) },
|
|
||||||
{ ":" },
|
|
||||||
{ builtin.column_with_width(2) },
|
|
||||||
{ "]" },
|
|
||||||
{
|
|
||||||
sections.collapse_builtin {
|
|
||||||
"[",
|
|
||||||
builtin.help_list,
|
|
||||||
builtin.readonly_list,
|
|
||||||
"]",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{ builtin.filetype },
|
|
||||||
}
|
|
||||||
|
|
||||||
local add_item = function(result, item)
|
|
||||||
table.insert(result, item)
|
|
||||||
end
|
|
||||||
|
|
||||||
local result = {}
|
|
||||||
for _, item in ipairs(items) do
|
|
||||||
add_item(result, item)
|
|
||||||
end
|
|
||||||
|
|
||||||
return result
|
|
||||||
end,
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
function! s:small_terminal() abort
|
|
||||||
new
|
|
||||||
wincmd J
|
|
||||||
call nvim_win_set_height(0, 12)
|
|
||||||
set winfixheight
|
|
||||||
term
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
nnoremap <leader>st :call <SID>small_terminal()<CR>
|
|
|
@ -1,8 +0,0 @@
|
||||||
local status_ok, twilight = pcall(require, "twilight")
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
twilight.setup {
|
|
||||||
context = 2,
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
local status_ok, zen_mode = pcall(require, "zen-mode")
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
zen_mode.setup {
|
|
||||||
window = {
|
|
||||||
backdrop = 0.95,
|
|
||||||
height = 1,
|
|
||||||
width = 80,
|
|
||||||
options = {
|
|
||||||
relativenumber = false,
|
|
||||||
number = false,
|
|
||||||
signcolumn = "no",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
plugins = {
|
|
||||||
options = {
|
|
||||||
enabled = true,
|
|
||||||
ruler = false,
|
|
||||||
},
|
|
||||||
gitsigns = { enabled = true },
|
|
||||||
tmux = { enabled = true },
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -217,15 +217,15 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
size = 14.0;
|
size = 16.0;
|
||||||
|
|
||||||
bold.style = "Regular";
|
bold.style = "Regular";
|
||||||
bolditalic.style = "Regular";
|
bolditalic.style = "Regular";
|
||||||
italic.style = "Regular";
|
italic.style = "Regular";
|
||||||
normal.family = "JetBrainsMono Nerd Font Mono";
|
normal.family = "IntoneMono Nerd Font Mono";
|
||||||
|
|
||||||
offset.y = 14;
|
offset.y = 12;
|
||||||
glyph_offset.y = 8;
|
glyph_offset.y = 6;
|
||||||
};
|
};
|
||||||
|
|
||||||
shell = { program = "zsh"; };
|
shell = { program = "zsh"; };
|
||||||
|
|
|
@ -21,6 +21,7 @@ in
|
||||||
pkgs.via
|
pkgs.via
|
||||||
pkgs.vial
|
pkgs.vial
|
||||||
pkgs.vlc
|
pkgs.vlc
|
||||||
|
pkgs.wl-mirror
|
||||||
pkgs.wob
|
pkgs.wob
|
||||||
pkgs.wofi
|
pkgs.wofi
|
||||||
pkgs.xcape
|
pkgs.xcape
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ inputs, pkgs, ... }:
|
{ inputs, pkgs, ... }:
|
||||||
|
|
||||||
with pkgs; [
|
with pkgs; [
|
||||||
awscli2
|
awscli2
|
||||||
bottom
|
bottom
|
||||||
|
|
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
customVim = with self; {
|
customVim = with self; {
|
||||||
|
toggle-checkbox-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||||
|
name = "toggle-checkbox-nvim";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "opdavies";
|
||||||
|
repo = "toggle-checkbox.nvim";
|
||||||
|
rev = "main";
|
||||||
|
sha256 = "1h9IGyMa80HWrtiPjruG4cYBqgTafNirW0Hwl/JO70A=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
vim-astro = pkgs.vimUtils.buildVimPlugin {
|
vim-astro = pkgs.vimUtils.buildVimPlugin {
|
||||||
name = "vim-astro";
|
name = "vim-astro";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
|
@ -235,14 +245,29 @@ in
|
||||||
exa -al
|
exa -al
|
||||||
}
|
}
|
||||||
zle -N clear-ls-all
|
zle -N clear-ls-all
|
||||||
bindkey '^K' clear-ls-all
|
|
||||||
|
|
||||||
clear-git-status() {
|
clear-git-status() {
|
||||||
clear
|
clear
|
||||||
git status -sb .
|
git status -sb .
|
||||||
}
|
}
|
||||||
zle -N clear-git-status
|
zle -N clear-git-status
|
||||||
|
|
||||||
|
clear-tree-2() {
|
||||||
|
clear
|
||||||
|
tree -L 2
|
||||||
|
}
|
||||||
|
zle -N clear-tree-2
|
||||||
|
|
||||||
|
clear-tree-3() {
|
||||||
|
clear
|
||||||
|
tree -L 3
|
||||||
|
}
|
||||||
|
zle -N clear-tree-3
|
||||||
|
|
||||||
bindkey '^G' clear-git-status
|
bindkey '^G' clear-git-status
|
||||||
|
# bindkey '^H' clear-tree-3
|
||||||
|
# bindkey '^J' clear-tree-2
|
||||||
|
# bindkey '^K' clear-ls-all
|
||||||
|
|
||||||
# auto-completes aliases
|
# auto-completes aliases
|
||||||
# enables to define
|
# enables to define
|
||||||
|
@ -305,6 +330,14 @@ in
|
||||||
|
|
||||||
ialias ls="exa -la"
|
ialias ls="exa -la"
|
||||||
|
|
||||||
|
# just
|
||||||
|
alias j="just"
|
||||||
|
alias jc="just composer"
|
||||||
|
alias jci="just composer install"
|
||||||
|
alias jcr="just composer require"
|
||||||
|
alias jd="just drush"
|
||||||
|
alias jt="just test"
|
||||||
|
|
||||||
# tmux
|
# tmux
|
||||||
alias ta="tmux attach"
|
alias ta="tmux attach"
|
||||||
alias tl="tmux list-sessions"
|
alias tl="tmux list-sessions"
|
||||||
|
@ -513,6 +546,14 @@ in
|
||||||
customVim.vim-textobj-xmlattr
|
customVim.vim-textobj-xmlattr
|
||||||
customVim.vim-visual-star-search
|
customVim.vim-visual-star-search
|
||||||
|
|
||||||
|
{
|
||||||
|
plugin = customVim.toggle-checkbox-nvim;
|
||||||
|
type = "lua";
|
||||||
|
config = ''
|
||||||
|
vim.keymap.set("n", "<leader>t", ":lua require('toggle-checkbox').toggle()<CR>")
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
vimPlugins.comment-nvim
|
vimPlugins.comment-nvim
|
||||||
vimPlugins.dial-nvim
|
vimPlugins.dial-nvim
|
||||||
vimPlugins.gitsigns-nvim
|
vimPlugins.gitsigns-nvim
|
||||||
|
|
Loading…
Reference in a new issue