stuff
This commit is contained in:
parent
c040534c69
commit
98e2ec0132
4 changed files with 16 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# This file contains fish universal variable definitions.
|
||||
# VERSION: 3.0
|
||||
SETUVAR --export EDITOR:nvim
|
||||
SETUVAR --export EDITOR:neovide
|
||||
SETUVAR LESS:RAW\x2dCONTROL\x2dCHARS
|
||||
SETUVAR __fish_initialized:3800
|
||||
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_description:bryellow\x1e\x2d\x2dbold\x1e\x2d\x2ditalics
|
||||
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/
|
||||
|
|
|
|||
|
|
@ -343,6 +343,16 @@ window-rule {
|
|||
window-rule {
|
||||
match app-id=r#"ipe$"# title="^Ipe: waiting$"
|
||||
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 {
|
||||
|
|
|
|||
1
.config/nvim/ftplugin/python.lua
Normal file
1
.config/nvim/ftplugin/python.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
vim.treesitter.start()
|
||||
|
|
@ -4,6 +4,8 @@
|
|||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
vim.o.guifont = "Adwaita Mono:h12"
|
||||
|
||||
-- Disable mouse input
|
||||
vim.o.mouse = ""
|
||||
|
||||
|
|
@ -123,7 +125,7 @@ vim.filetype.add({
|
|||
|
||||
-- Install 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', {
|
||||
pattern = { '<filetype>' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue