fix ipe.desktop
This commit is contained in:
parent
7f70069376
commit
dc10ad4703
4 changed files with 11 additions and 5 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
# This file contains fish universal variable definitions.
|
# This file contains fish universal variable definitions.
|
||||||
# VERSION: 3.0
|
# VERSION: 3.0
|
||||||
SETUVAR --export EDITOR:nvim
|
SETUVAR --export EDITOR:nvim
|
||||||
|
SETUVAR LESS:\x1d
|
||||||
SETUVAR --export QT_QPA_PLATFORMTHEME:qt6ct
|
SETUVAR --export QT_QPA_PLATFORMTHEME:qt6ct
|
||||||
SETUVAR --export LESS:--RAW-CONTROL-CHARS
|
|
||||||
SETUVAR __fish_initialized:3800
|
SETUVAR __fish_initialized:3800
|
||||||
SETUVAR fish_color_autosuggestion:585858
|
SETUVAR fish_color_autosuggestion:585858
|
||||||
SETUVAR fish_color_cancel:\x2d\x2dreverse
|
SETUVAR fish_color_cancel:\x2d\x2dreverse
|
||||||
|
|
|
||||||
|
|
@ -111,11 +111,17 @@ vim.filetype.add({
|
||||||
|
|
||||||
-- Install nvim-treesitter
|
-- Install nvim-treesitter
|
||||||
vim.pack.add({ "https://github.com/nvim-treesitter/nvim-treesitter" })
|
vim.pack.add({ "https://github.com/nvim-treesitter/nvim-treesitter" })
|
||||||
require("nvim-treesitter").setup({
|
require("nvim-treesitter").setup()
|
||||||
ensure_installed = { "lua", "latex", "c", "java", "ocaml" },
|
|
||||||
highlight = { enable = true }
|
vim.api.nvim_create_autocmd('FileType', {
|
||||||
|
pattern = { "lua", "tex", "c", "java", "ocaml" },
|
||||||
|
callback = function()
|
||||||
|
-- syntax highlighting, provided by Neovim
|
||||||
|
vim.treesitter.start()
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
-- See `:h lsp-quickstart` for more details.
|
-- See `:h lsp-quickstart` for more details.
|
||||||
vim.pack.add({ "https://github.com/mason-org/mason.nvim" })
|
vim.pack.add({ "https://github.com/mason-org/mason.nvim" })
|
||||||
require("mason").setup()
|
require("mason").setup()
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
|
@ -82,7 +82,7 @@ sudo dnf copr enable ycollet/audinux
|
||||||
|
|
||||||
Install the software.
|
Install the software.
|
||||||
```sh
|
```sh
|
||||||
sudo dnf install ardour guitarix lsp-plugins-lv2 drumgizmo surge-xt
|
sudo dnf install ardour8 drumgizmo caps-lv2 lv2-x42-plugins
|
||||||
```
|
```
|
||||||
|
|
||||||
### Miscellaneous
|
### Miscellaneous
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue