Merge branch 'main' of https://git.xenia.me.uk/xenia/nvim
This commit is contained in:
commit
5ae6d83c32
1
Makefile
1
Makefile
|
@ -11,6 +11,7 @@ default:
|
|||
clean:
|
||||
-rm -rf $(HOME)/.local/share/nvim
|
||||
-rm -rf $(HOME)/.local/state/nvim
|
||||
-rm -rf $(HOME)/.cache/nvim
|
||||
-rm $(BIN_DIR)/nvim
|
||||
-rm $(BIN_DIR)/direnv
|
||||
-rm -rf $(FONTS_DIR)/FiraCode
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
return {
|
||||
"folke/edgy.nvim",
|
||||
enabled = false,
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
bottom = {
|
||||
|
|
|
@ -3,5 +3,6 @@ return {
|
|||
cond = not vim.g.vscode,
|
||||
cmd = "SymbolsOutline",
|
||||
dependencies = { "neovim/nvim-lspconfig" },
|
||||
init = function() vim.keymap.set("n", "<leader>no", "<cmd>SymbolsOutline <cr>") end,
|
||||
config = true,
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
cond = function() return vim.fn.executable "nix" == 1 end,
|
||||
version = false,
|
||||
build = ":TSUpdate",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
|
@ -18,7 +17,7 @@ return {
|
|||
require("nvim-treesitter.configs").setup(opts)
|
||||
end,
|
||||
opts = {
|
||||
auto_install = true,
|
||||
auto_install = vim.fn.executable "nix" == 1,
|
||||
highlight = {
|
||||
enable = true,
|
||||
disable = { "fortran" },
|
||||
|
|
Loading…
Reference in a new issue