mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 00:58:16 +00:00
Add trouble-nvim
This commit is contained in:
@@ -168,7 +168,7 @@ in
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
normal.family = "Fira Code";
|
normal.family = "FiraCode Nerd Font";
|
||||||
size = 18;
|
size = 18;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -300,20 +300,22 @@ in
|
|||||||
|
|
||||||
extraConfig = builtins.readFile ./nvim/init.vim;
|
extraConfig = builtins.readFile ./nvim/init.vim;
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
completion-nvim
|
|
||||||
# gruvbox-nvim # TODO: Not working for some reason?
|
# gruvbox-nvim # TODO: Not working for some reason?
|
||||||
# lush-nvim # required by gruvbox-nvim
|
# lush-nvim # required by gruvbox-nvim
|
||||||
tokyonight-nvim
|
completion-nvim
|
||||||
lualine-nvim
|
lualine-nvim
|
||||||
nerdtree
|
nerdtree
|
||||||
nvim-lspconfig
|
nvim-lspconfig
|
||||||
nvim-treesitter
|
nvim-treesitter
|
||||||
nvim-ts-rainbow
|
nvim-ts-rainbow
|
||||||
|
nvim-web-devicons
|
||||||
rust-vim
|
rust-vim
|
||||||
supertab
|
supertab
|
||||||
syntastic
|
syntastic
|
||||||
tabular
|
tabular
|
||||||
telescope-nvim
|
telescope-nvim
|
||||||
|
tokyonight-nvim
|
||||||
|
trouble-nvim
|
||||||
twilight-nvim
|
twilight-nvim
|
||||||
typescript-vim
|
typescript-vim
|
||||||
vim-commentary
|
vim-commentary
|
||||||
@@ -325,9 +327,9 @@ in
|
|||||||
vim-nix
|
vim-nix
|
||||||
vim-prettier
|
vim-prettier
|
||||||
vim-repeat
|
vim-repeat
|
||||||
|
vim-signify
|
||||||
vim-sneak
|
vim-sneak
|
||||||
vim-surround
|
vim-surround
|
||||||
vim-signify
|
|
||||||
vim-terraform
|
vim-terraform
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@@ -43,6 +43,61 @@ require('nvim-treesitter.configs').setup({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
--folding
|
||||||
|
vim.api.nvim_exec([[
|
||||||
|
set foldmethod=expr
|
||||||
|
set foldlevel=20
|
||||||
|
set nofoldenable
|
||||||
|
set foldexpr=nvim_treesitter#foldexpr()
|
||||||
|
]], true)
|
||||||
|
|
||||||
|
-- trouble
|
||||||
|
require("trouble").setup {
|
||||||
|
{
|
||||||
|
position = "bottom", -- position of the list can be: bottom, top, left, right
|
||||||
|
height = 10, -- height of the trouble list when position is top or bottom
|
||||||
|
width = 50, -- width of the list when position is left or right
|
||||||
|
icons = true, -- use devicons for filenames
|
||||||
|
mode = "lsp_workspace_diagnostics", -- "lsp_workspace_diagnostics", "lsp_document_diagnostics", "quickfix", "lsp_references", "loclist"
|
||||||
|
fold_open = "", -- icon used for open folds
|
||||||
|
fold_closed = "", -- icon used for closed folds
|
||||||
|
action_keys = { -- key mappings for actions in the trouble list
|
||||||
|
-- map to {} to remove a mapping, for example:
|
||||||
|
-- close = {},
|
||||||
|
close = "q", -- close the list
|
||||||
|
cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor
|
||||||
|
refresh = "r", -- manually refresh
|
||||||
|
jump = {"<cr>", "<tab>"}, -- jump to the diagnostic or open / close folds
|
||||||
|
open_split = { "<c-x>" }, -- open buffer in new split
|
||||||
|
open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
|
||||||
|
open_tab = { "<c-t>" }, -- open buffer in new tab
|
||||||
|
jump_close = {"o"}, -- jump to the diagnostic and close the list
|
||||||
|
toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode
|
||||||
|
toggle_preview = "P", -- toggle auto_preview
|
||||||
|
hover = "K", -- opens a small popup with the full multiline message
|
||||||
|
preview = "p", -- preview the diagnostic location
|
||||||
|
close_folds = {"zM", "zm"}, -- close all folds
|
||||||
|
open_folds = {"zR", "zr"}, -- open all folds
|
||||||
|
toggle_fold = {"zA", "za"}, -- toggle fold of current file
|
||||||
|
previous = "k", -- preview item
|
||||||
|
next = "j" -- next item
|
||||||
|
},
|
||||||
|
indent_lines = true, -- add an indent guide below the fold icons
|
||||||
|
auto_open = false, -- automatically open the list when you have diagnostics
|
||||||
|
auto_close = false, -- automatically close the list when you have no diagnostics
|
||||||
|
auto_preview = true, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
|
||||||
|
auto_fold = false, -- automatically fold a file trouble list at creation
|
||||||
|
signs = {
|
||||||
|
-- icons / text used for a diagnostic
|
||||||
|
error = "",
|
||||||
|
warning = "",
|
||||||
|
hint = "",
|
||||||
|
information = "",
|
||||||
|
other = ""
|
||||||
|
},
|
||||||
|
use_lsp_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
-- twilight
|
-- twilight
|
||||||
require("twilight").setup {
|
require("twilight").setup {
|
||||||
@@ -61,11 +116,3 @@ require("twilight").setup {
|
|||||||
exclude = {}, -- exclude these filetypes
|
exclude = {}, -- exclude these filetypes
|
||||||
}
|
}
|
||||||
vim.cmd[[autocmd BufEnter * :TwilightEnable]]
|
vim.cmd[[autocmd BufEnter * :TwilightEnable]]
|
||||||
|
|
||||||
vim.api.nvim_exec([[
|
|
||||||
set foldmethod=expr
|
|
||||||
set foldlevel=20
|
|
||||||
set nofoldenable
|
|
||||||
set foldexpr=nvim_treesitter#foldexpr()
|
|
||||||
]], true)
|
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@ in
|
|||||||
casks = [
|
casks = [
|
||||||
"1password"
|
"1password"
|
||||||
"amethyst"
|
"amethyst"
|
||||||
|
"font-fira-code-nerd-font"
|
||||||
"font-hack-nerd-font"
|
"font-hack-nerd-font"
|
||||||
"osxfuse"
|
"osxfuse"
|
||||||
"visual-studio-code"
|
"visual-studio-code"
|
||||||
|
Reference in New Issue
Block a user