This commit is contained in:
Never Gude 2026-04-27 21:10:27 +02:00
parent c040534c69
commit 98e2ec0132
4 changed files with 16 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# 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:neovide
SETUVAR LESS:RAW\x2dCONTROL\x2dCHARS SETUVAR LESS:RAW\x2dCONTROL\x2dCHARS
SETUVAR __fish_initialized:3800 SETUVAR __fish_initialized:3800
SETUVAR fish_color_autosuggestion:white SETUVAR fish_color_autosuggestion:white
@ -43,4 +43,4 @@ SETUVAR fish_pager_color_selected_background:\x2d\x2dbackground\x1ebrblue
SETUVAR fish_pager_color_selected_completion:black\x1e\x2d\x2dbold SETUVAR fish_pager_color_selected_completion:black\x1e\x2d\x2dbold
SETUVAR fish_pager_color_selected_description:bryellow\x1e\x2d\x2dbold\x1e\x2d\x2ditalics SETUVAR fish_pager_color_selected_description:bryellow\x1e\x2d\x2dbold\x1e\x2d\x2ditalics
SETUVAR fish_pager_color_selected_prefix:black\x1e\x2d\x2dbold\x1e\x2d\x2dunderline SETUVAR fish_pager_color_selected_prefix:black\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
SETUVAR fish_user_paths:/home/never/\x2elocal/scripts\x1e/usr/local/texlive/2025/bin/x86_64\x2dlinux SETUVAR fish_user_paths:/home/never/\x2elocal/scripts\x1e/usr/local/texlive/2025/bin/x86_64\x2dlinux\x1e/home/never/\x2ecargo/bin/

View file

@ -343,6 +343,16 @@ window-rule {
window-rule { window-rule {
match app-id=r#"ipe$"# title="^Ipe: waiting$" match app-id=r#"ipe$"# title="^Ipe: waiting$"
open-floating true open-floating true
open-focused false
default-floating-position x=8 y=8 relative-to="bottom-left"
max-width 169
max-height 37
}
window-rule {
match app-id=r#"ipe$"# title="^Create text object$"
open-floating false
default-column-width { proportion 0.2; }
} }
window-rule { window-rule {

View file

@ -0,0 +1 @@
vim.treesitter.start()

View file

@ -4,6 +4,8 @@
vim.g.mapleader = " " vim.g.mapleader = " "
vim.g.maplocalleader = " " vim.g.maplocalleader = " "
vim.o.guifont = "Adwaita Mono:h12"
-- Disable mouse input -- Disable mouse input
vim.o.mouse = "" vim.o.mouse = ""
@ -123,7 +125,7 @@ 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").install({ 'fish', 'java', 'latex', 'make' }) require("nvim-treesitter").install({ 'fish', 'java', 'latex', 'make', 'python' })
vim.api.nvim_create_autocmd('FileType', { vim.api.nvim_create_autocmd('FileType', {
pattern = { '<filetype>' }, pattern = { '<filetype>' },